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

update: use demandimport friendly import practices

Changeset 3ec55e54cf75

Parent c69cc47e6d79

by Steve Borho

Changes to one file · Browse files at 3ec55e54cf75 Showing diff from parent c69cc47e6d79 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​update.py Stacked
 
13
14
15
 
16
17
18
 
171
172
173
174
175
 
176
177
178
 
13
14
15
16
17
18
19
 
172
173
174
 
 
175
176
177
178
@@ -13,6 +13,7 @@
 from mercurial.i18n import _  from hglib import rootpath, toutf, RepoError  import shlib +import hgcmd    class UpdateDialog(gtk.Window):   """ Dialog to update Mercurial repo """ @@ -171,8 +172,7 @@
  if overwrite:   cmdline.append('--clean')   - from hgcmd import CmdDialog - dlg = CmdDialog(cmdline) + dlg = hgcmd.CmdDialog(cmdline)   dlg.run()   dlg.hide()   if self.notify_func: