/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: Andrew Bennetts
  • Date: 2008-05-14 11:43:20 UTC
  • mto: This revision was merged to the branch mainline in revision 3428.
  • Revision ID: andrew.bennetts@canonical.com-20080514114320-9e9y155muh7i5ldq
Add 'error_verb' and 'error_args' attributes to ErrorFromSmartServer.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2454
2454
 
2455
2455
    def __init__(self, error_tuple):
2456
2456
        self.error_tuple = error_tuple
 
2457
        self.error_verb = error_tuple[0]
 
2458
        self.error_args = error_tuple[1:]
2457
2459
 
2458
2460
 
2459
2461
class ContainerError(BzrError):