Skip to content

Commit 3816553

Browse files
committed
fixed bug in open/save paths
1 parent ee1ba15 commit 3816553

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Changed
1313

14+
* Fixed bug in open/save paths.
15+
1416
### Removed
1517

1618

commands/RV_session_open.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
def RunCommand():
1010
session = RVSession()
1111

12-
filepath = FileForm.open(session.basedir)
12+
filepath = FileForm.open(str(session.basedir))
1313
if not filepath:
1414
return
1515

commands/RV_session_save.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
def RunCommand():
1010
session = RVSession()
1111

12-
filepath = FileForm.save(session.basedir, "RhinoVAULT.json")
12+
filepath = FileForm.save(str(session.basedir), "RhinoVAULT.json")
1313
if not filepath:
1414
return
1515

compas-RV.rhproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"id": "a6dc4669-0e8e-40ea-8d71-b9b0f4764ec1",
99
"identity": {
1010
"name": "COMPAS-RhinoVAULT",
11-
"version": "0.6.16",
11+
"version": "0.6.18",
1212
"publisher": {
1313
"email": "[email protected]",
1414
"name": "Tom Van Mele",

0 commit comments

Comments
 (0)