A few more PEP8 fixes

This commit is contained in:
Daniel Martí 2014-05-07 16:13:22 +02:00
parent 7a699e4a48
commit 17a4f5c00f
3 changed files with 12 additions and 11 deletions

View file

@ -67,7 +67,7 @@ def update_awsbucket(repo_section):
upload = False
file_to_upload = os.path.join(root, name)
object_name = 'fdroid/' + os.path.relpath(file_to_upload, os.getcwd())
if not object_name in objs:
if object_name not in objs:
upload = True
else:
obj = objs.pop(object_name)