Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

hgtk: remove support for external commit tools

This is being dropped in 0.9

Changeset e5ee05b3f381

Parent aecd9efe073e

by Steve Borho

Changes to 2 files · Browse files at e5ee05b3f381 Showing diff from parent aecd9efe073e Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​hgtk.py Stacked
 
269
270
271
272
273
274
275
276
277
278
279
280
281
282
 
269
270
271
 
 
 
 
 
 
 
 
272
273
274
@@ -269,14 +269,6 @@
   def commit(ui, *pats, **opts):   """commit tool""" - ct = ui.config('tortoisehg', 'extcommit', None) - if ct == 'qct': - from mercurial import dispatch as _dispatch - try: - _dispatch.dispatch(ct, *pats, **opts) - except SystemExit: - pass - return   portable_fork(ui)   # move cwd to repo root if repo is merged, so we can show   # all the changed files
 
66
67
68
69
70
71
72
73
74
75
 
66
67
68
 
 
 
 
69
70
71
@@ -66,10 +66,6 @@
 _commit_info = (   (_('Username'), 'ui.username', [],   _('Name associated with commits')), - (_('External Commit Tool'), 'tortoisehg.extcommit', ['None', 'qct'], - _('Select commit tool launched by TortoiseHg. (Qct is no longer' - ' distributed as part of TortoiseHG.)' - ' Default: None (use the builtin tool)')),   (_('Summary Line Length'), 'tortoisehg.summarylen', ['0', '70'],   _('Maximum length of the commit message summary line.'   ' If set, TortoiseHG will issue a warning if the'