Skip to content
Snippets Groups Projects
Commit 7d151799 authored by Campbell Barton's avatar Campbell Barton
Browse files

fix for bolt presets

parent 621354ed
No related branches found
No related tags found
No related merge requests found
......@@ -23,13 +23,13 @@ import os, sys
def getPresets():
scriptPath = os.path.join(bpy.utils.script_paths()[0], "addons" , "add_mesh_BoltFactory")
scriptPath = os.path.dirname(__file__)
presetPath = os.path.join(scriptPath, "presets")
presetFiles = os.listdir(presetPath)
#presetFiles.sort()
presets = [(presetFile, presetFile.rpartition(".")[0], presetFile)
for i, presetFile in enumerate(presetFiles)]
for i, presetFile in enumerate(presetFiles) if presetFile.endswith(".py")]
#print(presets)
return presets, presetPath
......
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