1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 23:23:27 +02:00

Fix dumb mistake

This commit is contained in:
Daniel Martí 2013-07-04 15:26:47 +02:00
parent c663b9b6e6
commit f44ad6711a

View File

@ -139,7 +139,7 @@ def check_repomanifest(app, sdk_path, branch=None):
if 'subdir' in app['builds'][-1]:
build_dir = os.path.join(build_dir, app['builds'][-1]['subdir'])
if !os.path.isdir(build_dir):
if not os.path.isdir(build_dir):
return (None, "Subdir '" + app['builds'][-1]['subdir'] + "'is not a valid directory")
version, vercode, package = common.parse_androidmanifest(build_dir)