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

hgtk: fix bad import of shlib

Changeset 9b5d473895ac

Parent bcb460a0f09a

by Steve Borho

Changes to one file · Browse files at 9b5d473895ac Showing diff from parent bcb460a0f09a 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)