summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDemon000 <demonsingur@gmail.com>2017-08-02 17:08:07 +0300
committerMichael Bestas <mkbestas@lineageos.org>2017-08-07 17:06:11 +0000
commitd29417334f0ef1dcaca1192116c815f229d97cf7 (patch)
treec34588d4447fe280cb84d77834aca2bbf3e99adf
parent63b1b6f833753eeda7900434cfedb67426d3fc4f (diff)
downloadscripts-d29417334f0ef1dcaca1192116c815f229d97cf7.tar.gz
scripts-d29417334f0ef1dcaca1192116c815f229d97cf7.tar.bz2
scripts-d29417334f0ef1dcaca1192116c815f229d97cf7.zip
maintainers.py: remove TODO install method check
Change-Id: I7036e69700970d77da97d125c8bd2e4a9496d84b
-rwxr-xr-xmaintainer-checks/maintainers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/maintainer-checks/maintainers.py b/maintainer-checks/maintainers.py
index 11aba13..50befab 100755
--- a/maintainer-checks/maintainers.py
+++ b/maintainer-checks/maintainers.py
@@ -85,7 +85,7 @@ for codename in codenames:
except KeyError:
print("{} doesn't have a maintainers field".format(codename))
try:
- if not yml["install_method"] or "TODO" in yml["install_method"]:
+ if not yml["install_method"]:
print("{} doesn't have an install method listed".format(codename))
elif "fastboot_generic" in yml["install_method"]:
print("{} uses fastboot_generic install method".format(codename))