/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: Martin Pool
  • Date: 2008-02-12 02:13:43 UTC
  • mto: (3221.6.1 1.2)
  • mto: This revision was merged to the branch mainline in revision 3222.
  • Revision ID: mbp@sourcefrog.net-20080212021343-3r7l8xi9lsrt4gzu
Fix format string for InconsistentDelta

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007, 2008 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
2006
2006
    """Used when we get a delta that is not valid."""
2007
2007
 
2008
2008
    _fmt = ("An inconsistent delta was supplied involving %(path)r,"
2009
 
            " %(file_id)r\nreason: %s")
 
2009
            " %(file_id)r\nreason: %(reason)s")
2010
2010
 
2011
2011
    def __init__(self, path, file_id, reason):
2012
2012
        BzrError.__init__(self)