Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurice Raybaud <mauriceraybaud@hotmail.fr>2022-01-31 02:19:46 +0300
committerMaurice Raybaud <mauriceraybaud@hotmail.fr>2022-01-31 02:19:46 +0300
commitfe7e5fd343005eba7b416889263695d27a01d2a4 (patch)
tree9d91abd339625d625e870be4a687bf03145e3c7b
parent9207696bbfac648c299f29f031ab5f18d8fa0077 (diff)
POV: Fix importer
fix useless enumeration providing index in place of string
-rwxr-xr-xrender_povray/scripting.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/render_povray/scripting.py b/render_povray/scripting.py
index 5f7a2b6e..77e266ef 100755
--- a/render_povray/scripting.py
+++ b/render_povray/scripting.py
@@ -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