Skip to content

Commit f456cd9

Browse files
authored
Merge pull request #184 from simvue-io/hotfix/incorrect-version-var
Fix wrong variable with version retrieval
2 parents eeac57b + 790c80f commit f456cd9

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)