Added missing gettext import to changegroup.py.
authorThomas Arendsen Hein <thomas@intevation.de>
Fri, 24 Mar 2006 15:19:08 +0100
changeset 1997 802e8a029d99
parent 1996 4c70b10f0418
child 1998 65cc17ae9649
Added missing gettext import to changegroup.py.
mercurial/changegroup.py
--- a/mercurial/changegroup.py
+++ b/mercurial/changegroup.py
@@ -7,6 +7,7 @@ This software may be used and distribute
 of the GNU General Public License, incorporated herein by reference.
 """
 import struct
+from i18n import gettext as _
 from demandload import *
 demandload(globals(), "util")