Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

hglib: Qui works with current tip of mercurial crew

when creating a repo, ui.copy is called, which creates a new object (same class) with the parent ui as src argument.

Changeset 8555910bbe48

Parent 416e3f799aa8

by Simon Heimberg

Changes to one file · Browse files at 8555910bbe48 Showing diff from parent 416e3f799aa8 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​hglib.py Stacked
 
422
423
424
425
426
 
 
427
428
429
 
422
423
424
 
 
425
426
427
428
429
@@ -422,8 +422,8 @@
  object. Assumes command is completely noninteractive.   '''   class Qui(ui.ui): - def __init__(self): - ui.ui.__init__(self) + def __init__(self, src=None): + super(Qui, self).__init__(src)   self.setconfig('ui', 'interactive', 'off')     def write(self, *args):