diff options
| author | Ben Finney <ben@benfinney.id.au> | 2008-05-16 18:04:01 +1000 |
|---|---|---|
| committer | Ben Finney <ben@benfinney.id.au> | 2008-05-16 18:04:01 +1000 |
| commit | 0d12af28d4de2745f8831abf0224ceabec693b76 (patch) | |
| tree | 01f46a2739eebc6676fc70a6ba93a69121e1bea6 /tests/apt-test.py | |
| parent | ad7bc46acd80451de21ce58450edb0f4367a5c79 (diff) | |
| download | python-apt-0d12af28d4de2745f8831abf0224ceabec693b76.tar.gz | |
Fix spaces adjacent to commas and operators, to conform with PEP 8.
Diffstat (limited to 'tests/apt-test.py')
| -rw-r--r-- | tests/apt-test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/apt-test.py b/tests/apt-test.py index 6205cf60..fac2ff43 100644 --- a/tests/apt-test.py +++ b/tests/apt-test.py @@ -20,7 +20,7 @@ if __name__ == "__main__": cache = apt.Cache(progress) for name in cache.keys(): import random - if random.randint(0,1) == 1: + if random.randint(0, 1) == 1: cache[name].markDelete() print "Broken: %s " % cache._depcache.BrokenCount print "DelCount: %s " % cache._depcache.DelCount |
