~duplicity-team/duplicity/0.7-series

« back to all changes in this revision

Viewing changes to testing/unit/test_gpg.py

  • Committer: Kenneth Loafman
  • Date: 2015-01-01 13:07:31 UTC
  • Revision ID: kenneth@loafman.com-20150101130731-6i3lb8r9rz4qpz2y
* Misc fixes for the following PEP8 issues:
   - E211, E221, E222, E225, E226, E228
   - see http://pep8.readthedocs.org

Show diffs side-by-side

added added

removed removed

Lines of Context:
173
173
        """Return buffer of size size, consisting of half random data"""
174
174
        s1 = size / 2
175
175
        s2 = size - s1
176
 
        return "a"*s1 + self.from_random_fp.read(s2)
 
176
        return "a" * s1 + self.from_random_fp.read(s2)
177
177
 
178
178
    def next(self):
179
179
        if self.at_end: raise StopIteration