##// END OF EJS Templates
schemas: use absolute_import
timeless -
r28379:27a90323 default
parent child Browse files
Show More
@@ -39,9 +39,18 b' For convenience, the extension adds thes'
39 You can override a predefined scheme by defining a new scheme with the
39 You can override a predefined scheme by defining a new scheme with the
40 same name.
40 same name.
41 """
41 """
42 from __future__ import absolute_import
42
43
43 import os, re
44 import os
44 from mercurial import extensions, hg, templater, util, error, cmdutil
45 import re
46 from mercurial import (
47 cmdutil,
48 error,
49 extensions,
50 hg,
51 templater,
52 util,
53 )
45 from mercurial.i18n import _
54 from mercurial.i18n import _
46
55
47 cmdtable = {}
56 cmdtable = {}
@@ -60,7 +60,6 b''
60 hgext/rebase.py not using absolute_import
60 hgext/rebase.py not using absolute_import
61 hgext/record.py not using absolute_import
61 hgext/record.py not using absolute_import
62 hgext/relink.py not using absolute_import
62 hgext/relink.py not using absolute_import
63 hgext/schemes.py not using absolute_import
64 hgext/share.py not using absolute_import
63 hgext/share.py not using absolute_import
65 hgext/transplant.py not using absolute_import
64 hgext/transplant.py not using absolute_import
66 hgext/win32mbcs.py not using absolute_import
65 hgext/win32mbcs.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now