~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/patches.py

  • Committer: Aaron Bentley
  • Date: 2009-10-14 22:08:45 UTC
  • mto: (4634.97.2 2.0)
  • mto: This revision was merged to the branch mainline in revision 4770.
  • Revision ID: aaron@aaronbentley.com-20091014220845-3rj9vvba9r3r2hod
Ensure patch roundtripping.

Show diffs side-by-side

added added

removed removed

Lines of Context:
277
277
        self.newname = newname
278
278
 
279
279
    def __str__(self):
280
 
        return 'Binary files %s and %s differ' % (self.oldname, self.newname)
 
280
        return 'Binary files %s and %s differ\n' % (self.oldname, self.newname)
281
281
 
282
282
 
283
283
class Patch(BinaryPatch):