comparison hgext/hbisect.py @ 3893:6b4127c7d52a

Simplify i18n imports
author Matt Mackall <mpm@selenic.com>
date Thu, 14 Dec 2006 20:25:19 -0600
parents abaee83ce0a6
children 052062b98f26
comparison
equal deleted inserted replaced
3892:2eec996f2fb9 3893:6b4127c7d52a
4 # Inspired by git bisect, extension skeleton taken from mq.py. 4 # Inspired by git bisect, extension skeleton taken from mq.py.
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 from mercurial.i18n import gettext as _ 9 from mercurial.i18n import _
10 from mercurial import hg, util, commands, cmdutil 10 from mercurial import hg, util, commands, cmdutil
11 import os, sys, sets 11 import os, sys, sets
12 12
13 versionstr = "0.0.3" 13 versionstr = "0.0.3"
14 14