dispatch: use the right context manager to deactivate demandimport
authorJordi Gutiérrez Hermoso <jordigh@octave.org>
Sun, 13 Sep 2015 16:30:21 -0400
changeset 26236 2e42517129ca
parent 26235 6c962145f523
child 26237 1c6f7cc52da9
dispatch: use the right context manager to deactivate demandimport In e86d12404d69 I very embarrassingly wrote a patch with the completely wrong function name. This should fix it.
mercurial/dispatch.py
--- a/mercurial/dispatch.py	Thu Sep 10 10:50:03 2015 -0400
+++ b/mercurial/dispatch.py	Sun Sep 13 16:30:21 2015 -0400
@@ -181,7 +181,7 @@
                     debugtrace[debugger] == debugtrace['pdb']):
                     ui.warn(_("%s debugger specified "
                               "but its module was not found\n") % debugger)
-                with demandimport.disabled():
+                with demandimport.deactivated():
                     debugtrace[debugger]()
             try:
                 return _dispatch(req)