~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to errors.py

Merge most of the standalone shelf branch. This brings in a few changes which
make it easier to write a standalone shelf, although not all of them.
There's also a bunch of new features, tests, etc.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
try:
 
2
    from bzrlib.errors import BzrCommandError as CommandError
 
3
except ImportError:
 
4
    class CommandError(Exception):
 
5
        pass