~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2005-07-25 14:17:15 UTC
  • Revision ID: abentley@panoramicfeedback.com-20050725141715-d410836f6e4a32c0
Got baz2bzr/annotate working now that ProgressBar is a function

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
try:
8
8
    import baz_import
9
9
    commands.append(baz_import.cmd_baz_import)
10
 
except baz_import.NoPyBaz:
 
10
except Exception:
11
11
    class cmd_baz_import(bzrlib.commands.Command):
12
12
        """Disabled. (Requires PyBaz)"""
13
13
    commands.append(cmd_baz_import)