Mercurial > hg > mercurial-crew
comparison mercurial/pushkey.py @ 26553:7b200566e474
pushkey: use absolute_import
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Sat, 08 Aug 2015 19:57:27 -0700 |
parents | b1d694d3975e |
children |
comparison
equal
deleted
inserted
replaced
26552:1139d7cf9405 | 26553:7b200566e474 |
---|---|
3 # Copyright 2010 Matt Mackall <mpm@selenic.com> | 3 # Copyright 2010 Matt Mackall <mpm@selenic.com> |
4 # | 4 # |
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 = {} |
12 for k in _namespaces: | 19 for k in _namespaces: |
13 n[k] = "" | 20 n[k] = "" |