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

nautilus: use new file for debugging

Changeset 6d06ea6fa448

Parent 79c413ef4df1

by Simon Heimberg

Changes to one file · Browse files at 6d06ea6fa448 Showing diff from parent 79c413ef4df1 Diff from another changeset...

 
89
90
91
 
 
 
 
 
 
 
92
93
94
 
121
122
123
124
 
125
126
127
 
89
90
91
92
93
94
95
96
97
98
99
100
101
 
128
129
130
 
131
132
133
134
@@ -89,6 +89,13 @@
  self.ipath = os.path.join(thgpath, 'icons', 'tortoise')   self.menu = tortoise.menuthg.menuThg()   + import tortoise.debugthg + global debugf + if tortoise.debugthg.level('N') + debugf = tortoise.debugthg.debugf + else: + debugf = tortoise.debugthg.debugf_No +   def icon(self, iname):   return os.path.join(self.ipath, iname)   @@ -121,7 +128,7 @@
  self.cacherepo = None   return None   except StandardError, e: - print e + debugf(e)   return None     def run_dialog(self, menuitem, hgtkcmd, cwd = None):