POV: Fix importer

fix useless enumeration providing index in place of string
This commit is contained in:
Maurice Raybaud 2022-01-31 00:19:46 +01:00
parent 9207696bbf
commit fe7e5fd343
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ class ImportPOV(bpy.types.Operator, ImportHelper):
S = S.replace(";", " ; ")
S = S.split()
# lenS = len(S) # Not used... why written?
for word in enumerate(S):
for word in S:
# -------- Primitives Import -------- #
if word == 'cone':
cone_search = True