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

hglib, hgthread: disable [defaults] configurations

Fixes #407 and similar as yet unreported bugs

Changeset f663d3dc2675

Parent c1dcbb8f95e4

by Steve Borho

Changes to 2 files · Browse files at f663d3dc2675 Showing diff from parent c1dcbb8f95e4 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​hgthread.py Stacked
 
157
158
159
 
 
160
161
162
 
157
158
159
160
161
162
163
164
@@ -157,6 +157,8 @@
  ret = None   if hasattr(self.ui, 'copy'):   # Mercurial 1.3 + for k, v in self.ui.configitems('defaults'): + self.ui.setconfig('defaults', k, '')   ret = hglib.dispatch._dispatch(self.ui, self.args)   else:   # Mercurial 1.2
Change 1 of 1 Show Entire File thgutil/​hglib.py Stacked
 
165
166
167
 
 
168
169
170
 
165
166
167
168
169
170
171
172
@@ -165,6 +165,8 @@
  u = Qui()   if hasattr(ui.ui, 'copy'):   # Mercurial 1.3 + for k, v in u.configitems('defaults'): + u.setconfig('defaults', k, '')   return dispatch._dispatch(u, list(args))   else:   return thgdispatch(u, path, list(args))