Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph

Merge with stable

Changeset 1138ebafa026

Parents 620eff4aee7a

Parents fc68e6c2770c

by Steve Borho

Changes to one file · Browse files at 1138ebafa026 Showing diff from parent 620eff4aee7a fc68e6c2770c Diff from another changeset...

 
1152
1153
1154
1155
 
 
1156
1157
1158
 
1152
1153
1154
 
1155
1156
1157
1158
1159
@@ -1152,7 +1152,8 @@
 def run(ui, *pats, **opts):   from tortoisehg.util import paths   from tortoisehg.hgqt import thgrepo - repo = thgrepo.repository(ui, path=paths.find_root()) + root = opts.get('root', paths.find_root()) + repo = thgrepo.repository(ui, path=root)   pats = hglib.canonpaths(pats)   os.chdir(repo.root)   return CommitDialog(repo, pats, opts)