comparison mercurial/dirstate.py @ 3893:6b4127c7d52a

Simplify i18n imports
author Matt Mackall <mpm@selenic.com>
date Thu, 14 Dec 2006 20:25:19 -0600
parents abaee83ce0a6
children dda03b2d9ef1
comparison
equal deleted inserted replaced
3892:2eec996f2fb9 3893:6b4127c7d52a
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 9
10 from node import * 10 from node import *
11 from i18n import gettext as _ 11 from i18n import _
12 import struct, os, time, bisect, stat, strutil, util, re, errno 12 import struct, os, time, bisect, stat, strutil, util, re, errno
13 13
14 class dirstate(object): 14 class dirstate(object):
15 format = ">cllll" 15 format = ">cllll"
16 16