Script execution

This commit is contained in:
x07maop
2015-08-25 10:07:36 +02:00
parent 202cb7214e
commit 50cebd71bd

View File

@@ -27,7 +27,7 @@ def getPars(element):
tokens = line.split("=")
if tokens[0] == str(element):
tokens = tokens[1].split(";")
for i in range[tokens.lenght]:
for i in range[len(tokens)]:
tokens[i] = float(tokens[i])
return tokens
finally: