Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

merge

Changeset f017cf32331a

Parents 0ed2d81c314b

Parents 9b5d473895ac

by Steve Borho

Changes to one file · Browse files at f017cf32331a Showing diff from parent 0ed2d81c314b 9b5d473895ac Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​hgtk.py Stacked
 
22
23
24
25
 
26
27
28
 
526
527
528
529
530
531
532
 
533
534
535
 
22
23
24
 
25
26
27
28
 
526
527
528
 
529
530
 
531
532
533
534
@@ -22,7 +22,7 @@
 from mercurial import hg, util, fancyopts, cmdutil, extensions    from thgutil.i18n import _ -from thgutil import hglib, paths +from thgutil import hglib, paths, shlib    nonrepo_commands = 'userconfig clone debugcomplete init about help version'   @@ -526,10 +526,9 @@
   def version(ui, **opts):   """output version and copyright information""" - import hggtk.shlib   ui.write(_('TortoiseHg Dialogs (version %s), '   'Mercurial (version %s)\n') % - (hggtk.shlib.version(), util.version())) + (shlib.version(), util.version()))   if not ui.quiet:   ui.write(shortlicense)