##// END OF EJS Templates
bugzilla: use absolute_import
Gregory Szorc -
r28091:2f038424 default
parent child Browse files
Show More
@@ -277,10 +277,21 b' All the above add a comment to the Bugzi'
277 277 Changeset commit comment. Bug 1234.
278 278 '''
279 279
280 from __future__ import absolute_import
281
282 import re
283 import time
284 import urlparse
285 import xmlrpclib
286
280 287 from mercurial.i18n import _
281 288 from mercurial.node import short
282 from mercurial import cmdutil, mail, util, error
283 import re, time, urlparse, xmlrpclib
289 from mercurial import (
290 cmdutil,
291 error,
292 mail,
293 util,
294 )
284 295
285 296 # Note for extension authors: ONLY specify testedwith = 'internal' for
286 297 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
@@ -32,7 +32,6 b''
32 32 doc/gendoc.py not using absolute_import
33 33 doc/hgmanpage.py not using absolute_import
34 34 hgext/__init__.py not using absolute_import
35 hgext/bugzilla.py not using absolute_import
36 35 hgext/censor.py not using absolute_import
37 36 hgext/children.py not using absolute_import
38 37 hgext/churn.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now