Skip to content

Commit 904663c

Browse files
committed
Blender: Fix filename join
1 parent fa27fb3 commit 904663c

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/windows/views/blender_listview.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,12 @@ def currentChanged(self, selected, deselected):
148148
continue
149149

150150
param["values"][fileName] = "|".join(
151-
file.data["path"], str(file.data["height"]),
152-
str(file.data["width"]), file.data["media_type"],
153-
str(file.data["fps"]["num"] / file.data["fps"]["den"])
151+
(file.data["path"],
152+
str(file.data["height"]),
153+
str(file.data["width"]),
154+
file.data["media_type"],
155+
str(file.data["fps"]["num"] / file.data["fps"]["den"])
156+
)
154157
)
155158

156159
# Add normal values

0 commit comments

Comments
 (0)