comparison hgext/bugzilla.py @ 3893:6b4127c7d52a

Simplify i18n imports
author Matt Mackall <mpm@selenic.com>
date Thu, 14 Dec 2006 20:25:19 -0600
parents abaee83ce0a6
children f8849648b0e2
comparison
equal deleted inserted replaced
3892:2eec996f2fb9 3893:6b4127c7d52a
50 # [bugzilla] 50 # [bugzilla]
51 # usermap = filename # cfg file with "committer"="bugzilla user" info 51 # usermap = filename # cfg file with "committer"="bugzilla user" info
52 # [usermap] 52 # [usermap]
53 # committer_email = bugzilla_user_name 53 # committer_email = bugzilla_user_name
54 54
55 from mercurial.i18n import gettext as _ 55 from mercurial.i18n import _
56 from mercurial.node import * 56 from mercurial.node import *
57 from mercurial import cmdutil, templater, util 57 from mercurial import cmdutil, templater, util
58 import os, re, time 58 import os, re, time
59 59
60 MySQLdb = None 60 MySQLdb = None