# HG changeset patch # User Matt Mackall # Date 1181662494 18000 # Node ID 9338be783398a3c996b15d4bd4e3c5ea79efc8a8 # Parent 050fa240db9cebc0fb6238c09de40fcfb867bb95 extensions: add missing sys import diff --git a/mercurial/extensions.py b/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 = {}