/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 breezy/tests/blackbox/test_pack.py

  • Committer: Jelmer Vernooij
  • Date: 2018-11-11 04:08:32 UTC
  • mto: (7143.16.20 even-more-cleanups)
  • mto: This revision was merged to the branch mainline in revision 7175.
  • Revision ID: jelmer@jelmer.uk-20181111040832-nsljjynzzwmznf3h
Run autopep8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
        self._make_file(path, line_prefix, total_lines, versioned=True)
29
29
 
30
30
    def _make_file(self, path, line_prefix, total_lines, versioned):
31
 
        text=''
 
31
        text = ''
32
32
        for i in range(total_lines):
33
 
            text += line_prefix + str(i+1) + "\n"
 
33
            text += line_prefix + str(i + 1) + "\n"
34
34
 
35
35
        with open(path, 'w') as f:
36
36
            f.write(text)