1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import bzrlib.commands
import push
import annotate
import shelf
commands = [push.cmd_push, annotate.cmd_annotate, shelf.cmd_shelve,
shelf.cmd_unshelve]
from errors import NoPyBaz
try:
import baz_import
commands.append(baz_import.cmd_baz_import)
except NoPyBaz:
class cmd_baz_import(bzrlib.commands.Command):
"""Disabled. (Requires PyBaz)"""
commands.append(cmd_baz_import)
if hasattr(bzrlib.commands, 'register_command'):
for command in commands:
bzrlib.commands.register_command(command)
|