Skip to content
Snippets Groups Projects
Verified Commit d3efee7a authored by Hari Rana's avatar Hari Rana :speech_balloon:
Browse files

Use nested list for parsing config

parent 594a5da7
No related branches found
No related tags found
1 merge request!2Use get() instead of try catch since it's faster
......@@ -198,6 +198,7 @@ def ParseConfig(config):
for line in f:
name = [x.strip() for x in line.split('=')]
if name[0] == "effects":
name[1] = name[1].split(':')
args.effects = name[1]
elif name[0] == "toggleKey":
args.toggleKey = name[1]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment