/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: John Arbash Meinel
  • Date: 2006-08-08 03:34:23 UTC
  • mto: This revision was merged to the branch mainline in revision 1937.
  • Revision ID: john@arbash-meinel.com-20060808033423-1beba5800a4b66d4
NotABranch was not properly initializing the parent

Show diffs side-by-side

added added

removed removed

Lines of Context:
298
298
 
299
299
    def __init__(self, path):
300
300
       import bzrlib.urlutils as urlutils
301
 
       self.path = urlutils.unescape_for_display(path, 'ascii')
 
301
       path = urlutils.unescape_for_display(path, 'ascii')
 
302
       PathError.__init__(self, path=path, extra=None)
 
303
       self._extra = None
302
304
 
303
305
 
304
306
class AlreadyBranchError(PathError):