Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.1, 2.0.2, and 2.0.3

stable status, commit: fix file selections from the command line

Changeset bcdbd5aa8374

Parent 0b995f878644

by Steve Borho

Changes to 2 files · Browse files at bcdbd5aa8374 Showing diff from parent 0b995f878644 Diff from another changeset...

 
976
977
978
979
 
 
 
 
 
 
 
976
977
978
 
979
980
981
982
983
984
@@ -976,4 +976,9 @@
  QDialog.reject(self)    def run(ui, *pats, **opts): - return CommitDialog(hglib.canonpaths(pats), opts) + from tortoisehg.util import paths + from tortoisehg.hgqt import thgrepo + repo = thgrepo.repository(ui, path=paths.find_root()) + pats = hglib.canonpaths(pats) + os.chdir(repo.root) + return CommitDialog(pats, opts)
 
775
776
777
 
 
 
 
 
778
 
775
776
777
778
779
780
781
782
783
@@ -775,4 +775,9 @@
  QDialog.reject(self)    def run(ui, *pats, **opts): + from tortoisehg.util import paths + from tortoisehg.hgqt import thgrepo + repo = thgrepo.repository(ui, path=paths.find_root()) + pats = hglib.canonpaths(pats) + os.chdir(repo.root)   return StatusDialog(pats, opts)