diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/gen_archlist.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/scripts/gen_archlist.py b/scripts/gen_archlist.py index 407ebbd3..6369aa20 100755 --- a/scripts/gen_archlist.py +++ b/scripts/gen_archlist.py @@ -493,10 +493,9 @@ def prettify(cpv_kws): # Use the Functions # ##################### # cpvs that will make it to the final list -if __name__ == "__main__": - index = 0 - array = [] - +def main(): + """Where the magic happens!""" + ALL_CPV_KWS = [] for i in open(CP_FILE).readlines(): cp = i[:-1] if cp.startswith('#') or cp.isspace() or not cp: @@ -535,3 +534,7 @@ if __name__ == "__main__": for i in prettify(ALL_CPV_KWS): print i[0], flatten(i[1]) + + +if __name__ == '__main__': + main() |