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

stable cmdui: fix progressReceived signal signature (fixes #493)

The last argument is either repo.root or None, so use 'object'

Changeset 977e00f9a309

Parent a1c9e8aead2e

by Steve Borho

Changes to one file · Browse files at 977e00f9a309 Showing diff from parent a1c9e8aead2e Diff from another changeset...

 
473
474
475
476
477
 
 
478
479
480
 
473
474
475
 
 
476
477
478
479
480
@@ -473,8 +473,8 @@
  """Console to run hg/thg command and show output"""   closeRequested = pyqtSignal()   - progressReceived = pyqtSignal(unicode, object, unicode, unicode, - object, unicode) + progressReceived = pyqtSignal(QString, object, QString, QString, + object, object)   """Emitted when progress received     Args: topic, pos, item, unit, total, reporoot