Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/extensions.py @ 13368:d4ab9486e514
bookmarks: move push/pull command features to core
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 10 Feb 2011 13:46:28 -0600 |
parents | 0d3f35394af4 |
children | 08fde203a600 |
comparison
equal
deleted
inserted
replaced
13367:cef73cd9c268 | 13368:d4ab9486e514 |
---|---|
9 import util, cmdutil, help, error | 9 import util, cmdutil, help, error |
10 from i18n import _, gettext | 10 from i18n import _, gettext |
11 | 11 |
12 _extensions = {} | 12 _extensions = {} |
13 _order = [] | 13 _order = [] |
14 _ignore = ['hbisect'] | 14 _ignore = ['hbisect', 'bookmarks'] |
15 | 15 |
16 def extensions(): | 16 def extensions(): |
17 for name in _order: | 17 for name in _order: |
18 module = _extensions[name] | 18 module = _extensions[name] |
19 if module: | 19 if module: |