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

history: accept relative repo path (debugging)

Changeset 9be490fc7158

Parent dfd591e4cef1

by TK Soh

Changes to one file · Browse files at 9be490fc7158 Showing diff from parent dfd591e4cef1 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​history.py Stacked
 
620
621
622
623
 
 
624
625
 
620
621
622
 
623
624
625
626
@@ -620,6 +620,7 @@
 if __name__ == "__main__":   import sys   opts = {} - opts['root'] = len(sys.argv) > 1 and sys.argv[1] or os.getcwd() + path = len(sys.argv) > 1 and sys.argv[1] or os.getcwd() + opts['root'] = os.path.abspath(path)   opts['files'] = [opts['root']]   run(**opts)