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

htmlui: mercurial's ui.plain() got an additional parameter

see mercurial change be0daa0eeb3e

This fixes

Traceback (most recent call last):
File "tortoisehg\hgqt\wctxactions.pyo", line 143, in runAction
File "tortoisehg\hgqt\htmlui.pyo", line 20, in __init__
File "mercurial\ui.pyo", line 36, in __init__
File "mercurial\ui.pyo", line 88, in readconfig
TypeError: plain() takes exactly 1 argument (2 given)

Changeset 6367f4a79ee8

Parent 6b6afb451f73

by Adrian Buehlmann

Changes to one file · Browse files at 6367f4a79ee8 Showing diff from parent 6b6afb451f73 Diff from another changeset...

 
81
82
83
84
 
85
86
87
 
81
82
83
 
84
85
86
87
@@ -81,7 +81,7 @@
  return ''.join(self.style(a, label) for a, label in b)   return ''.join(a for a, label in b)   - def plain(self): + def plain(self, feature=None):   return True     def getdata(self):