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

commit: replace all relative imports

Changeset dcb4cf505412

Parent 98b4f319e23c

by Steve Borho

Changes to one file · Browse files at dcb4cf505412 Showing diff from parent 98b4f319e23c Diff from another changeset...

Change 1 of 4 Show Entire File hggtk/​commit.py Stacked
 
23
24
25
26
27
 
28
29
30
 
610
611
612
613
614
 
615
616
617
 
659
660
661
662
663
 
664
665
666
 
776
777
778
779
780
 
781
782
783
 
23
24
25
 
 
26
27
28
29
 
609
610
611
 
 
612
613
614
615
 
657
658
659
 
 
660
661
662
663
 
773
774
775
 
 
776
777
778
779
@@ -23,8 +23,7 @@
   from hggtk.status import GStatus, FM_STATUS, FM_CHECKED, FM_PATH_UTF8  from hggtk.status import DM_REJECTED, DM_CHUNK_ID -from hggtk import gtklib -from hggtk import gdialog +from hggtk import gtklib, thgconfig, gdialog, hgcmd    class BranchOperationDialog(gtk.Dialog):   def __init__(self, branch, close): @@ -610,8 +609,7 @@
  # bring up the config dialog for user to enter their username.   # But since we can't be sure they will do it right, we will   # have them to retry, to re-trigger the checking mechanism. - from thgconfig import ConfigDialog - dlg = ConfigDialog(False) + dlg = thgconfig.ConfigDialog(False)   dlg.show_all()   dlg.focus_field('ui.username')   dlg.run() @@ -659,8 +657,7 @@
  if self.qnew:   cmdline += [hglib.fromutf(self._get_qnew_name())]   cmdline += [self.repo.wjoin(x) for x in files] - from hgcmd import CmdDialog - dialog = CmdDialog(cmdline, True) + dialog = hgcmd.CmdDialog(cmdline, True)   dialog.set_transient_for(self)   dialog.run()   dialog.hide() @@ -776,8 +773,7 @@
  buf.set_text('\n'.join(lines))     def _msg_config(self, sender): - from thgconfig import ConfigDialog - dlg = ConfigDialog(True) + dlg = thgconfig.ConfigDialog(True)   dlg.show_all()   dlg.focus_field('tortoisehg.summarylen')   dlg.run()