This commit is contained in:
Jonas Zeunert
2020-03-11 23:41:23 +01:00
parent 19d97f47f9
commit 46b07b3889

View File

@@ -9,7 +9,7 @@ class TargetFactory:
glo = globals() # Save globals so the dict does not change during execution of the script
for key in glo:
if type(glo[key]) is type:
if type(glo[key]) is not type:
continue
target = glo[key]