~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to errors.py

  • Committer: Aaron Bentley
  • Date: 2008-11-05 14:02:52 UTC
  • mfrom: (676.1.3 bzrtools-1.9)
  • Revision ID: aaron@aaronbentley.com-20081105140252-aem9ee88p7m33ceg
Merge with bzrtools-1.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
import os
19
19
 
20
 
class NoPyBaz(Exception):
21
 
    def __init__(self):
22
 
        Exception.__init__(self, "PyBaz is not installed.")
23
20
try:
24
21
    from bzrlib.errors import BzrCommandError as CommandError
25
22
    from bzrlib.errors import BzrError