Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1, 2.1.1, and 2.1.2

mq: adapt to fd2662ea0068

trying to fix

{{{
#!python
** Mercurial version (1.8.1+82-48d606d7192b). TortoiseHg version (2.0.2+80-639101ab707b)
** Command: --nofork workbench
** CWD: <deleted>
** Extensions loaded: fixfrozenexts, transplant, rebase, mq, graphlog, patchbomb
** Python version: 2.6.6 (r266:84297, Aug 24 2010, 18:13:38) [MSC v.1500 64 bit (AMD64)]
** Windows version: (6, 1, 7601, 2, 'Service Pack 1')
** Processor architecture: x64
** Qt-4.7.1 PyQt-4.8.3
Traceback (most recent call last):
File "tortoisehg\hgqt\mq.pyo", line 456, in onFileSelected
TypeError: displayFile() takes exactly 3 arguments (4 given)
}}}

Changeset d95a6e8bd22c

Parent 639101ab707b

by Adrian Buehlmann

Changes to one file · Browse files at d95a6e8bd22c Showing diff from parent 639101ab707b Diff from another changeset...

 
449
450
451
452
453
454
455
456
 
457
458
459
 
449
450
451
 
 
 
 
 
452
453
454
455
@@ -449,11 +449,7 @@
  text = hglib.fromunicode(self.fileListWidget.item(row).text())   status = text[0]   filename = text[2:] - if self.newCheckBox.isChecked(): - rev = self.repo['.'].rev() - else: - rev = self.repo['qtip'].p1().rev() - self.fileview.displayFile(filename, rev, status) + self.fileview.displayFile(filename, status)     @pyqtSlot(int)   def onMessageSelected(self, row):