##// END OF EJS Templates
templatekw: use absolute_import
Gregory Szorc -
r25984:c57509e8 default
parent child Browse files
Show More
@@ -5,9 +5,16 b''
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2 or any later version.
7 7
8 from node import hex
9 import patch, scmutil, util, error
10 import hbisect
8 from __future__ import absolute_import
9
10 from .node import hex
11 from . import (
12 error,
13 hbisect,
14 patch,
15 scmutil,
16 util,
17 )
11 18
12 19 # This helper class allows us to handle both:
13 20 # "{files}" (legacy command-line-specific list hack) and
General Comments 0
You need to be logged in to leave comments. Login now