equal
deleted
inserted
replaced
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] = "" |