Mercurial > public > mercurial-scm > hg
comparison mercurial/extensions.py @ 4558:9338be783398
extensions: add missing sys import
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Tue, 12 Jun 2007 10:34:54 -0500 |
parents | 930ed513c864 |
children | 3daed3680554 622d8ed78b47 |
comparison
equal
deleted
inserted
replaced
4557:050fa240db9c | 4558:9338be783398 |
---|---|
3 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> | 3 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> |
4 # | 4 # |
5 # This software may be used and distributed according to the terms | 5 # This software may be used and distributed according to the terms |
6 # of the GNU General Public License, incorporated herein by reference. | 6 # of the GNU General Public License, incorporated herein by reference. |
7 | 7 |
8 import imp, commands, hg, util | 8 import imp, commands, hg, util, sys |
9 from i18n import _ | 9 from i18n import _ |
10 | 10 |
11 _extensions = {} | 11 _extensions = {} |
12 | 12 |
13 def find(name): | 13 def find(name): |