##// 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 39 You can override a predefined scheme by defining a new scheme with the
40 40 same name.
41 41 """
42 from __future__ import absolute_import
42 43
43 import os, re
44 from mercurial import extensions, hg, templater, util, error, cmdutil
44 import os
45 import re
46 from mercurial import (
47 cmdutil,
48 error,
49 extensions,
50 hg,
51 templater,
52 util,
53 )
45 54 from mercurial.i18n import _
46 55
47 56 cmdtable = {}
@@ -60,7 +60,6 b''
60 60 hgext/rebase.py not using absolute_import
61 61 hgext/record.py not using absolute_import
62 62 hgext/relink.py not using absolute_import
63 hgext/schemes.py not using absolute_import
64 63 hgext/share.py not using absolute_import
65 64 hgext/transplant.py not using absolute_import
66 65 hgext/win32mbcs.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now