diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2015-06-27 00:09:54 +0200 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2015-06-27 00:14:43 +0200 |
commit | bb81b5c9415b3d70f508a77ba1f79f86c5b4a79c (patch) | |
tree | c1347aff444b913d5311056717da365151a64bfa /scripts | |
parent | scripts/gen_archlist: cosmetics (diff) | |
download | gnome-bb81b5c9415b3d70f508a77ba1f79f86c5b4a79c.tar.gz gnome-bb81b5c9415b3d70f508a77ba1f79f86c5b4a79c.tar.bz2 gnome-bb81b5c9415b3d70f508a77ba1f79f86c5b4a79c.zip |
scripts/gen_archlist: do not add skipped lines to ALL_CPV_KWS
Why in the world would we want to do that.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/gen_archlist.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/gen_archlist.py b/scripts/gen_archlist.py index 7c41a9ce..1633dfac 100755 --- a/scripts/gen_archlist.py +++ b/scripts/gen_archlist.py @@ -489,7 +489,6 @@ def main(): for i in open(args.file).readlines(): cp = i[:-1] if cp.startswith('#') or cp.isspace() or not cp: - ALL_CPV_KWS.append(cp) continue if cp.find('#') is not -1: raise Exception('Inline comments are not supported') |