summaryrefslogtreecommitdiff
path: root/mercurial/pushkey.py
diff options
context:
space:
mode:
Diffstat (limited to 'mercurial/pushkey.py')
-rw-r--r--mercurial/pushkey.py9
1 files changed, 2 insertions, 7 deletions
diff --git a/mercurial/pushkey.py b/mercurial/pushkey.py
index 7d692d0..2343319 100644
--- a/mercurial/pushkey.py
+++ b/mercurial/pushkey.py
@@ -5,21 +5,16 @@
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
-import bookmarks, phases, obsolete
+import bookmarks
def _nslist(repo):
n = {}
for k in _namespaces:
n[k] = ""
- if not obsolete._enabled:
- n.pop('obsolete')
return n
_namespaces = {"namespaces": (lambda *x: False, _nslist),
- "bookmarks": (bookmarks.pushbookmark, bookmarks.listbookmarks),
- "phases": (phases.pushphase, phases.listphases),
- "obsolete": (obsolete.pushmarker, obsolete.listmarkers),
- }
+ "bookmarks": (bookmarks.pushbookmark, bookmarks.listbookmarks)}
def register(namespace, pushkey, listkeys):
_namespaces[namespace] = (pushkey, listkeys)