changeset 1871 | 58ef5699fb35 |
parent 1867 | c9cacc62fa17 |
child 1872 | 4fcee38d71d6 |
--- a/src/topic/__init__.py Wed Oct 21 01:12:32 2015 +0200 +++ b/src/topic/__init__.py Wed Oct 21 01:09:15 2015 +0200 @@ -28,6 +28,7 @@ from . import constants from . import revset as topicrevset +from . import destination cmdtable = {} command = cmdutil.command(cmdtable) @@ -47,6 +48,9 @@ return [t] return [] +def uisetup(ui): + destination.setupdest() + def reposetup(ui, repo): orig = repo.__class__ class topicrepo(repo.__class__):