1
2
3
4
5
6
7
8
9
|
import bzrlib.commands
import push
import annotate
import shelf
if hasattr(bzrlib.commands, 'register_plugin_command'):
commands = [push.cmd_push, annotate.cmd_annotate, shelf.cmd_shelve,
shelf.cmd_unshelve]
for command in commands:
bzrlib.commands.register_plugin_command(command)
|