~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2006-02-21 05:08:07 UTC
  • Revision ID: aaron.bentley@utoronto.ca-20060221050807-3cc86585e1ec6edc
Updated to match API changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
"""
5
5
import bzrlib.commands
6
6
import push
7
 
import annotate
8
7
from shelf import Shelf
9
8
import sys
10
9
import os.path
194
193
command_decorators = []
195
194
 
196
195
import bzrlib.builtins
197
 
if not hasattr(bzrlib.builtins, "cmd_annotate"):
198
 
    commands.append(annotate.cmd_annotate)
199
196
if not hasattr(bzrlib.builtins, "cmd_push"):
200
197
    commands.append(push.cmd_push)
201
198
else: