Cleanup: import-brush-set-replace-hardcoded-file-extensions #104802

Merged
Showing only changes of commit 8fabb11720 - Show all commits

View File

@ -23,6 +23,12 @@ bl_info = {
fakeUser = False fakeUser = False
def LoadBrushSet(filepath, filename): def LoadBrushSet(filepath, filename):
# Ensure filepath is a path and not a file (this can happen when the user selects a file within the folder)
if os.path.isfile(filepath):
path, file = os.path.split(filepath)
filepath = os.path.join(path + "\\")
for file in os.listdir(filepath): for file in os.listdir(filepath):
path = (filepath + file) path = (filepath + file)