Skip to content
Snippets Groups Projects
Commit 4631428d authored by Axel Prel's avatar Axel Prel
Browse files

get_substitutions: fix empty keyword error

parent d566e3e0
No related branches found
No related tags found
1 merge request!61migrate to v17
This commit is part of merge request !61. Comments created here will be created in the context of that merge request.
......@@ -434,7 +434,7 @@
for name in varlist:
while "." in name:
name = name[: name.rfind(".")]
if name not in varlist:
if name not in varlist and name != "":
varlist.append(name)
varlist.sort()
......
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