1180
1180
class InvalidRevisionSpec(BzrError):
1182
1182
_fmt = ("Requested revision: '%(spec)s' does not exist in branch:"
1185
1185
def __init__(self, spec, branch, extra=None):
1186
1186
BzrError.__init__(self, branch=branch, spec=spec)
1188
1189
self.extra = '\n' + str(extra)