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

hglib: call shlib.update_thgstatus

Changeset 416a70c26ee7

Parent 66a09fc67e26

by Adrian Buehlmann

Changes to one file · Browse files at 416a70c26ee7 Showing diff from parent 66a09fc67e26 Diff from another changeset...

Change 1 of 2 Show Entire File thgutil/​hglib.py Stacked
 
11
12
13
 
14
15
16
 
297
298
299
 
 
 
 
300
 
11
12
13
14
15
16
17
 
298
299
300
301
302
303
304
305
@@ -11,6 +11,7 @@
 import sys  import traceback  import Queue +import shlib  from mercurial import hg, ui, util, extensions, commands, hook    from i18n import _ @@ -297,4 +298,8 @@
  # run post-hook, passing command result   hook.hook(ui, repo, "post-%s" % cmd, False, args=" ".join(fullargs),   result = ret) + + if repo: + shlib.update_thgstatus(repo.ui, repo.root, wait=True) +   return ret