Commit 9bf360e7 authored by Valentin Buck's avatar Valentin Buck
Browse files

Finally fixed the array problem

parent 223a73ac
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ def process_plugin_folder(path):
        elif l.startswith("NAME"):
            plugin_name = l[5:].strip()
        elif l.startswith("FOLDER"):
            plugin_folders += l[7:].strip()
            plugin_folders += [l[7:].strip()]
    print(plugin_name)
    print(plugin_files)
    print(plugin_folders)