comparison hgext/win32mbcs.py @ 28417:588874c33b4d

win32mbcs: use absolute_import
author timeless <timeless@mozdev.org>
date Wed, 02 Mar 2016 21:50:35 +0000
parents 56b2bcea2529
children a0939666b836
comparison
equal deleted inserted replaced
28416:d3c8183f429e 28417:588874c33b4d
42 [win32mbcs] 42 [win32mbcs]
43 encoding = sjis 43 encoding = sjis
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
54 # leave the attribute unspecified. 61 # leave the attribute unspecified.
55 testedwith = 'internal' 62 testedwith = 'internal'