~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to errors.py

Decorate the built in push command, allowing both rsync push and native push to be used.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
class NoPyBaz(Exception):
2
2
    def __init__(self):
3
3
        Exception.__init__(self, "PyBaz is not installed.")
 
4