comparison mercurial/changegroup.py @ 1997:802e8a029d99

Added missing gettext import to changegroup.py.
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 24 Mar 2006 15:19:08 +0100
parents 736b6c96bbbc
children fe1689273f84
comparison
equal deleted inserted replaced
1996:4c70b10f0418 1997:802e8a029d99
5 5
6 This software may be used and distributed according to the terms 6 This software may be used and distributed according to the terms
7 of the GNU General Public License, incorporated herein by reference. 7 of the GNU General Public License, incorporated herein by reference.
8 """ 8 """
9 import struct 9 import struct
10 from i18n import gettext as _
10 from demandload import * 11 from demandload import *
11 demandload(globals(), "util") 12 demandload(globals(), "util")
12 13
13 def getchunk(source): 14 def getchunk(source):
14 """get a chunk from a changegroup""" 15 """get a chunk from a changegroup"""