extensions: add missing sys import
authorMatt Mackall <mpm@selenic.com>
Tue, 12 Jun 2007 10:34:54 -0500
changeset 4559 9338be783398
parent 4557 050fa240db9c
child 4560 80d35fba99a8
child 4580 eda59019dc69
extensions: add missing sys import
mercurial/extensions.py
--- a/mercurial/extensions.py
+++ b/mercurial/extensions.py
@@ -5,7 +5,7 @@
 # This software may be used and distributed according to the terms
 # of the GNU General Public License, incorporated herein by reference.
 
-import imp, commands, hg, util
+import imp, commands, hg, util, sys
 from i18n import _
 
 _extensions = {}