Skip to content
Snippets Groups Projects
Commit fe7e5fd3 authored by Maurice Raybaud's avatar Maurice Raybaud
Browse files

POV: Fix importer

fix useless enumeration providing index in place of string
parent 9207696b
Branches
Tags
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment