Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.4rc1, 0.4rc2, and 0.4rc3

hggtk/commit: fix addremove behavior

This was broken way back when hgcmd was used to do the commit

Changeset 1cd79d191c06

Parent d4ede75dd7d4

by Steve Borho

Changes to one file · Browse files at 1cd79d191c06 Showing diff from parent d4ede75dd7d4 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​commit.py Stacked
 
203
204
205
 
 
206
207
208
 
203
204
205
206
207
208
209
210
@@ -203,6 +203,8 @@
  # won't get locked up by potential large commit. CmdDialog will also   # display the progress of the commit operation.   cmdline = ["hg", "commit", "--verbose", "--repository", self.repo.root] + if self.opts['addremove']: + cmdline += ['--addremove']   cmdline += ['--message', self.opts['message']]   cmdline += files   dialog = CmdDialog(cmdline, True)