##// END OF EJS Templates
filelog: use absolute_import
Gregory Szorc -
r25948:34bd1a5e default
parent child Browse files
Show More
@@ -5,8 +5,16 b''
5 # This software may be used and distributed according to the terms of the
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version.
6 # GNU General Public License version 2 or any later version.
7
7
8 import error, mdiff, revlog
8 from __future__ import absolute_import
9 import re, struct
9
10 import re
11 import struct
12
13 from . import (
14 error,
15 mdiff,
16 revlog,
17 )
10
18
11 _mdre = re.compile('\1\n')
19 _mdre = re.compile('\1\n')
12 def parsemeta(text):
20 def parsemeta(text):
General Comments 0
You need to be logged in to leave comments. Login now