~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Wouter van Heyst
  • Date: 2006-06-07 17:23:59 UTC
  • mto: This revision was merged to the branch mainline in revision 1752.
  • Revision ID: larstiq@larstiq.dyndns.org-20060607172359-6023dec74344453d
more code cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
247
247
# the exception object is a bit undesirable.
248
248
# TODO: Probably this behavior of should be a common superclass 
249
249
class NotBranchError(PathError):
250
 
    "Not a branch: %(path)s" 
 
250
    """Not a branch: %(path)s"""
251
251
 
252
252
    def __init__(self, path):
253
253
       import bzrlib.urlutils as urlutils