Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.3rc1, 0.3, and 0.4rc1

hggtk/commit: remove dependency on Hg 0.9.5

Changeset ed11185b8031

Parent 17816f0f4fd0

by TK Soh

Changes to one file · Browse files at ed11185b8031 Showing diff from parent 17816f0f4fd0 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​commit.py Stacked
 
22
23
24
25
 
26
27
28
 
220
221
222
 
223
224
 
225
226
227
 
22
23
24
 
25
26
27
28
 
220
221
222
223
224
 
225
226
227
228
@@ -22,7 +22,7 @@
   from mercurial.i18n import _  from mercurial.node import * -from mercurial import cmdutil, util, ui, hg, commands, patch, dispatch +from mercurial import cmdutil, util, ui, hg, commands, patch  from hgext import extdiff  from shlib import shell_notify  from gdialog import * @@ -220,8 +220,9 @@
    ct = repo.ui.config('tortoisehg', 'commit', 'internal')   if ct != 'internal': + from hglib import thgdispatch   args = ['--repository', root, ct] - ret = dispatch._dispatch(repo.ui, args) + ret = thgdispatch(repo.ui, args=args)   return None     cmdoptions = {