~bzr-svn/bzr-svn/1.1

« back to all changes in this revision

Viewing changes to send.py

  • Committer: Jelmer Vernooij
  • Date: 2010-07-26 21:59:02 UTC
  • Revision ID: jelmer@samba.org-20100726215902-q6vfbjtn29bztwcy
Remove trailing whitespace.

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
 
69
69
    def _write_contents_diff(self, path, old_version, old_contents, new_version, new_contents):
70
70
        if path is None:
71
 
            return 
 
71
            return
72
72
        self.to_file.write("Index: %s\n" % path)
73
73
        self.to_file.write("=" * 67 + "\n")
74
74
        old_label = '%s\t%s' % (path, old_version)