##// END OF EJS Templates
win32mbcs: use absolute_import
timeless -
r28417:588874c3 default
parent child Browse files
Show More
@@ -44,10 +44,17 b' You can specify the encoding by config o'
44
44
45 It is useful for the users who want to commit with UTF-8 log message.
45 It is useful for the users who want to commit with UTF-8 log message.
46 '''
46 '''
47 from __future__ import absolute_import
47
48
48 import os, sys
49 import os
50 import sys
51
52 from mercurial import (
53 encoding,
54 error,
55 )
49 from mercurial.i18n import _
56 from mercurial.i18n import _
50 from mercurial import error, encoding
57
51 # Note for extension authors: ONLY specify testedwith = 'internal' for
58 # Note for extension authors: ONLY specify testedwith = 'internal' for
52 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
59 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
53 # be specifying the version(s) of Mercurial they are tested with, or
60 # be specifying the version(s) of Mercurial they are tested with, or
@@ -47,7 +47,6 b''
47 hgext/rebase.py not using absolute_import
47 hgext/rebase.py not using absolute_import
48 hgext/share.py not using absolute_import
48 hgext/share.py not using absolute_import
49 hgext/transplant.py not using absolute_import
49 hgext/transplant.py not using absolute_import
50 hgext/win32mbcs.py not using absolute_import
51 hgext/win32text.py not using absolute_import
50 hgext/win32text.py not using absolute_import
52 i18n/check-translation.py not using absolute_import
51 i18n/check-translation.py not using absolute_import
53 i18n/polib.py not using absolute_import
52 i18n/polib.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now