Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.6, 0.7, and 0.7.1

history: fix spaces in source lines

Changeset 873fc0277a36

Parent d5a3b594e211

by TK Soh

Changes to one file · Browse files at 873fc0277a36 Showing diff from parent d5a3b594e211 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​history.py Stacked
 
426
427
428
429
 
430
431
432
 
435
436
437
438
 
439
440
441
 
426
427
428
 
429
430
431
432
 
435
436
437
 
438
439
440
441
@@ -426,7 +426,7 @@
  dialog.present()   dialog.set_transient_for(None)   - def _revert(self,menuitem): + def _revert(self, menuitem):   rev = self.currow[treemodel.REVID]   res = Confirm('Revert Revision(s)', [], self,   'Revert all files to revision %d?\nThis will overwrite your ' @@ -435,7 +435,7 @@
  if res != gtk.RESPONSE_YES:   return   - cmdline = ['hg', 'revert','--verbose','-a','-r', str(rev)] + cmdline = ['hg', 'revert', '--verbose', '-a', '-r', str(rev)]     from hgcmd import CmdDialog   dlg = CmdDialog(cmdline)