##// END OF EJS Templates
pushkey: use absolute_import
Gregory Szorc -
r25969:7b200566 default
parent child Browse files
Show More
@@ -5,7 +5,14 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 bookmarks, phases, obsolete, encoding
8 from __future__ import absolute_import
9
10 from . import (
11 bookmarks,
12 encoding,
13 obsolete,
14 phases,
15 )
9
16
10 def _nslist(repo):
17 def _nslist(repo):
11 n = {}
18 n = {}
General Comments 0
You need to be logged in to leave comments. Login now