##// END OF EJS Templates
py3: make hgext/hgk.py use absolute_import
Pulkit Goyal -
r29125:9b12517a default
parent child Browse files
Show More
@@ -34,9 +34,21 b' Revisions context menu will now display '
34 34 vdiff on hovered and selected revisions.
35 35 '''
36 36
37 from __future__ import absolute_import
38
37 39 import os
38 from mercurial import cmdutil, commands, patch, scmutil, obsolete
39 from mercurial.node import nullid, nullrev, short
40 from mercurial import (
41 cmdutil,
42 commands,
43 obsolete,
44 patch,
45 scmutil,
46 )
47 from mercurial.node import (
48 nullid,
49 nullrev,
50 short,
51 )
40 52 from mercurial.i18n import _
41 53
42 54 cmdtable = {}
@@ -8,7 +8,6 b''
8 8 hgext/fsmonitor/pywatchman/capabilities.py not using absolute_import
9 9 hgext/fsmonitor/pywatchman/pybser.py not using absolute_import
10 10 hgext/hgcia.py not using absolute_import
11 hgext/hgk.py not using absolute_import
12 11 hgext/highlight/__init__.py not using absolute_import
13 12 hgext/highlight/highlight.py not using absolute_import
14 13 hgext/histedit.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now