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

revset: raise type errors

uncovers this one:

Traceback (most recent call last):
File "<snip>\tortoisehg\hgqt\revset.py", line 380, in run
func = revset.match(self.text)
TypeError: match() takes exactly 2 arguments (1 given)

Changeset 17999dda8297

Parent 25cbaeb58641

by Adrian Buehlmann

Changes to one file · Browse files at 17999dda8297 Showing diff from parent 25cbaeb58641 Diff from another changeset...

 
390
391
392
 
 
393
394
395
 
390
391
392
393
394
395
396
397
@@ -390,6 +390,8 @@
  else:   msg = e.args[0]   self.showMessage.emit(_('Parse Error: ') + hglib.tounicode(msg)) + except TypeError: + raise   except Exception, e:   self.showMessage.emit(_('Invalid query: ')+hglib.tounicode(str(e)))