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

hgtk: report Mercurial version as well as our own

fixes #117

Changeset f8ea88acf6af

Parent 979561d3ead2

by Steve Borho

Changes to one file · Browse files at f8ea88acf6af Showing diff from parent 979561d3ead2 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​hgtk.py Stacked
 
479
480
481
482
 
 
 
483
484
485
 
479
480
481
 
482
483
484
485
486
487
@@ -479,7 +479,9 @@
 def version(ui, **opts):   """output version and copyright information"""   import hggtk.shlib - ui.write(_('TortoiseHg Dialogs (version %s)\n') % hggtk.shlib.version()) + ui.write(_('TortoiseHg Dialogs (version %s), ' + 'Mercurial (version %s)\n') % + (hggtk.shlib.version(), util.version()))   if not ui.quiet:   ui.write(shortlicense)