Skip to content

Commit 790c80f

Browse files
committed
Fix wrong variable with version retrieval
1 parent eeac57b commit 790c80f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

simvue/factory/remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def set_folder_details(self, data, run=None) -> typing.Optional[dict[str, typing
106106
"""
107107
Set folder details
108108
"""
109-
if run is not None and not self._version:
109+
if run is not None and not __version__:
110110
data["name"] = run
111111

112112
try:

0 commit comments

Comments
 (0)