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
No related branches found
No related tags found
No related merge requests found
...@@ -194,7 +194,7 @@ class ImportPOV(bpy.types.Operator, ImportHelper): ...@@ -194,7 +194,7 @@ class ImportPOV(bpy.types.Operator, ImportHelper):
S = S.replace(";", " ; ") S = S.replace(";", " ; ")
S = S.split() S = S.split()
# lenS = len(S) # Not used... why written? # lenS = len(S) # Not used... why written?
for word in enumerate(S): for word in S:
# -------- Primitives Import -------- # # -------- Primitives Import -------- #
if word == 'cone': if word == 'cone':
cone_search = True cone_search = True
......
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