fix PEP8 "E231 missing whitespace after ','"

This commit is contained in:
Hans-Christoph Steiner 2014-05-01 22:16:32 -04:00
parent f1812d5935
commit 998011d535
7 changed files with 25 additions and 25 deletions

View file

@ -212,9 +212,9 @@ def check_repomanifest(app, branch=None):
if package != appid:
return (None, "Package ID mismatch")
if not version:
return (None,"Couldn't find latest version name")
return (None, "Couldn't find latest version name")
if not vercode:
return (None,"Couldn't find latest version code")
return (None, "Couldn't find latest version code")
vercode = str(int(vercode))