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

serve: replace all relative imports

Changeset a59df07065a5

Parent 24b21b62f1d5

by Steve Borho

Changes to one file · Browse files at a59df07065a5 Showing diff from parent 24b21b62f1d5 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​serve.py Stacked
 
22
23
24
25
 
26
27
28
 
203
204
205
206
207
 
208
209
210
 
22
23
24
 
25
26
27
28
 
203
204
205
 
 
206
207
208
209
@@ -22,7 +22,7 @@
 from thgutil.i18n import _  from thgutil import hglib, paths   -from hggtk import dialog, gdialog, gtklib +from hggtk import dialog, gdialog, gtklib, thgconfig    gservice = None  class ServeDialog(gtk.Window): @@ -203,8 +203,7 @@
  threading.Thread(target=start_browser).start()     def _on_conf_clicked(self, *args): - from thgconfig import ConfigDialog - dlg = ConfigDialog(True) + dlg = thgconfig.ConfigDialog(True)   dlg.show_all()   dlg.focus_field('web.name')   dlg.run()