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

backout: replace all relative imports

Changeset e4797b45b95c

Parent 9689a58883c2

by Steve Borho

Changes to one file · Browse files at e4797b45b95c Showing diff from parent 9689a58883c2 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​backout.py Stacked
 
12
13
14
15
 
16
17
18
 
111
112
113
114
115
 
116
117
118
 
12
13
14
 
15
16
17
18
 
111
112
113
 
 
114
115
116
117
@@ -12,7 +12,7 @@
 from mercurial import hg, ui  from thgutil.i18n import _  from thgutil import hglib, paths -from hggtk import gtklib +from hggtk import gtklib, hgcmd    class BackoutDialog(gtk.Window):   """ Backout effect of a changeset """ @@ -111,8 +111,7 @@
  start, end = buf.get_bounds()   msg = buf.get_text(start, end)   cmdline = ['hg', 'backout', '--rev', revstr, '--message', msg] - from hgcmd import CmdDialog - dlg = CmdDialog(cmdline) + dlg = hgcmd.CmdDialog(cmdline)   dlg.show_all()   dlg.run()   dlg.hide()