mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03:00
Fix pep8
This commit is contained in:
parent
96854be84a
commit
0936051c7b
1 changed files with 10 additions and 10 deletions
|
|
@ -136,7 +136,7 @@ def make(apps, apks, repodir, archive):
|
|||
def _should_file_be_generated(path, magic_string):
|
||||
if os.path.exists(path):
|
||||
with open(path) as f:
|
||||
if not magic_string in f.readline(): # if the magic_string is not in the first line the file should be overwritten
|
||||
if magic_string not in f.readline(): # if the magic_string is not in the first line the file should be overwritten
|
||||
return False
|
||||
return True
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue