From: Daniel Martí Date: Sun, 25 Oct 2015 10:32:18 +0000 (+0100) Subject: Fix a small indentation issue X-Git-Tag: 0.5.0~30 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=7e7d67f0d7a894159337120431f7ed0ae98e1139;p=fdroidserver.git Fix a small indentation issue --- diff --git a/fdroidserver/checkupdates.py b/fdroidserver/checkupdates.py index 2de9a83c..65c238a3 100644 --- a/fdroidserver/checkupdates.py +++ b/fdroidserver/checkupdates.py @@ -81,12 +81,12 @@ def check_http(app): def app_matches_packagename(app, package): - if not package: - return False - appid = app['Update Check Name'] or app['id'] - if appid == "Ignore": - return True - return appid == package + if not package: + return False + appid = app['Update Check Name'] or app['id'] + if appid == "Ignore": + return True + return appid == package # Check for a new version by looking at the tags in the source repo.