/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 errors.py

  • Committer: Jelmer Vernooij
  • Date: 2018-03-06 01:46:14 UTC
  • mfrom: (0.200.1819 work)
  • mto: (0.200.1820 work)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@jelmer.uk-20180306014614-w4yooagw6ufouzf4
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
 
49
49
 
50
50
class NoPushSupport(bzr_errors.BzrError):
51
 
    _fmt = "Push is not yet supported from %(source)r to %(target)r using %(mapping)r. Try dpush instead."
 
51
    _fmt = "Push is not yet supported from %(source)r to %(target)r using %(mapping)r for %(revision_id)r. Try dpush instead."
52
52
 
53
 
    def __init__(self, source, target, mapping):
 
53
    def __init__(self, source, target, mapping, revision_id=None):
54
54
        self.source = source
55
55
        self.target = target
56
56
        self.mapping = mapping
 
57
        self.revision_id = revision_id
57
58
 
58
59
 
59
60
class GitSmartRemoteNotSupported(bzr_errors.UnsupportedOperation):