Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.2, 1.9.3, and 2.0

mq: provide absolute filenames to command line (closes #96)

Changeset 5e400720ae23

Parent 7ac946ea294d

by Steve Borho

Changes to one file · Browse files at 5e400720ae23 Showing diff from parent 7ac946ea294d Diff from another changeset...

 
399
400
401
402
 
 
403
404
405
 
399
400
401
 
402
403
404
405
406
@@ -399,7 +399,8 @@
  for row in xrange(self.fileListWidget.count()):   item = self.fileListWidget.item(row)   if item.checkState() == Qt.Checked: - files.append(hglib.fromunicode(item.text()[2:])) + wfile = hglib.fromunicode(item.text()[2:]) + files.append(self.repo.wjoin(wfile))   if len(files) > 1:   cmdline += files   else: