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

status: fix traceback from missing module

Changeset 0b2fe4a3b91b

Parent 078e88733f7c

by Steve Borho

Changes to one file · Browse files at 0b2fe4a3b91b Showing diff from parent 078e88733f7c Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​status.py Stacked
 
1047
1048
1049
1050
1051
1052
1053
1054
1055
 
1056
1057
1058
 
1047
1048
1049
 
1050
 
1051
 
 
1052
1053
1054
1055
@@ -1047,12 +1047,9 @@
      def _log_file(self, stat, wfile): - from gtools import cmdtable   from history import GLog -   # Might want to include 'rev' here... trying without - statopts = self.merge_opts(cmdtable['glog|ghistory'][1], ('include', 'exclude', 'git')) - dialog = GLog(self.ui, self.repo, self.cwd, [wfile], statopts, False) + dialog = GLog(self.ui, self.repo, self.cwd, [wfile], self.opts, False)   dialog.display()   return True