Mercurial > hg-stable
changeset 4558:9338be783398
extensions: add missing sys import
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Tue, 12 Jun 2007 10:34:54 -0500 |
parents | 050fa240db9c |
children | eda59019dc69 80d35fba99a8 |
files | mercurial/extensions.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/extensions.py Mon Jun 11 21:09:24 2007 -0500 +++ b/mercurial/extensions.py Tue Jun 12 10:34:54 2007 -0500 @@ -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 = {}