##// END OF EJS Templates
keyword: use absolute_import
Christian Ebert -
r28321:a7b453b4 default
parent child Browse files
Show More
@@ -82,12 +82,32 b" like CVS' $Log$, are not supported. A ke"
82 82 {desc}" expands to the first line of the changeset description.
83 83 '''
84 84
85 from mercurial import commands, context, cmdutil, dispatch, filelog, extensions
86 from mercurial import localrepo, match, patch, templatefilters, util, error
87 from mercurial import scmutil, pathutil
85
86 from __future__ import absolute_import
87
88 import os
89 import re
90 import tempfile
91
88 92 from mercurial.hgweb import webcommands
89 93 from mercurial.i18n import _
90 import os, re, tempfile
94
95 from mercurial import (
96 cmdutil,
97 commands,
98 context,
99 dispatch,
100 error,
101 extensions,
102 filelog,
103 localrepo,
104 match,
105 patch,
106 pathutil,
107 scmutil,
108 templatefilters,
109 util,
110 )
91 111
92 112 cmdtable = {}
93 113 command = cmdutil.command(cmdtable)
@@ -59,7 +59,6 b''
59 59 hgext/highlight/__init__.py not using absolute_import
60 60 hgext/highlight/highlight.py not using absolute_import
61 61 hgext/histedit.py not using absolute_import
62 hgext/keyword.py not using absolute_import
63 62 hgext/largefiles/__init__.py not using absolute_import
64 63 hgext/largefiles/basestore.py not using absolute_import
65 64 hgext/largefiles/lfcommands.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now