comparison mercurial/bundlerepo.py @ 3893:6b4127c7d52a

Simplify i18n imports
author Matt Mackall <mpm@selenic.com>
date Thu, 14 Dec 2006 20:25:19 -0600
parents abaee83ce0a6
children 01d98d68d697
comparison
equal deleted inserted replaced
3892:2eec996f2fb9 3893:6b4127c7d52a
9 This software may be used and distributed according to the terms 9 This software may be used and distributed according to the terms
10 of the GNU General Public License, incorporated herein by reference. 10 of the GNU General Public License, incorporated herein by reference.
11 """ 11 """
12 12
13 from node import * 13 from node import *
14 from i18n import gettext as _ 14 from i18n import _
15 import changegroup, util, os, struct, bz2, tempfile 15 import changegroup, util, os, struct, bz2, tempfile
16 16
17 import localrepo, changelog, manifest, filelog, revlog 17 import localrepo, changelog, manifest, filelog, revlog
18 18
19 class bundlerevlog(revlog.revlog): 19 class bundlerevlog(revlog.revlog):