/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: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-11-16 18:59:44 UTC
  • mfrom: (7143.15.15 more-cleanups)
  • Revision ID: breezy.the.bot@gmail.com-20181116185944-biefv1sub37qfybm
Sprinkle some PEP8iness.

Merged from https://code.launchpad.net/~jelmer/brz/more-cleanups/+merge/358611

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)