mercurial/dispatch.py
changeset 33053 ef46d432e2e4
parent 33052 45b0e9d05ee9
child 33499 0407a51b9d8c
--- a/mercurial/dispatch.py	Sat Jun 24 02:39:20 2017 +0900
+++ b/mercurial/dispatch.py	Sat Jun 24 02:39:21 2017 +0900
@@ -720,8 +720,6 @@
         return lambda: runcommand(lui, None, cmd, args[:1], ui, options, d,
                                   [], {})
 
-_loaded = set()
-
 def _dispatch(req):
     args = req.args
     ui = req.ui
@@ -746,8 +744,7 @@
     profile = lui.configbool('profiling', 'enabled')
     with profiling.profile(lui, enabled=profile) as profiler:
         # Configure extensions in phases: uisetup, extsetup, cmdtable, and
-        # reposetup. Programs like TortoiseHg will call _dispatch several
-        # times so we keep track of configured extensions in _loaded.
+        # reposetup
         extensions.loadall(lui)
         # Propagate any changes to lui.__class__ by extensions
         ui.__class__ = lui.__class__