~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2006-02-28 17:17:59 UTC
  • mfrom: (318 bzrtools)
  • mto: (147.4.30 trunk)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: abentley@panoramicfeedback.com-20060228171759-7a97c3a9c12e97c8
Got bzrtools almost working, except baz-import

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
197
196
command_decorators = []
198
197
 
199
198
import bzrlib.builtins
200
 
if not hasattr(bzrlib.builtins, "cmd_annotate"):
201
 
    commands.append(annotate.cmd_annotate)
202
199
if not hasattr(bzrlib.builtins, "cmd_push"):
203
200
    commands.append(push.cmd_push)
204
201
else: