0.2.3
by Michael Ellerman
Factor out bzrisms. |
1 |
try: |
2 |
from bzrlib.errors import BzrCommandError as CommandError |
|
3 |
except ImportError: |
|
4 |
class CommandError(Exception): |
|
5 |
pass
|
|
0.1.89
by Michael Ellerman
Add support for unshelving -p0 patches, for backward compatibility. |
6 |
|
7 |
class PatchFailed(Exception): |
|
8 |
"""Failed applying patch!"""
|