Skip to content

Commit 54a86bd

Browse files
committed
bump
1 parent a3cdd6b commit 54a86bd

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

proj/environment/manager.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,11 @@ def _start_logging(self):
8585

8686
def _log_conf(self):
8787
# log config.py
88-
with open("proj/model/config.py") as f:
89-
conf = f.read()
88+
try:
89+
with open("proj/model/config.py") as f:
90+
conf = f.read()
91+
except FileNotFoundError:
92+
conf = self.model.config_dict()
9093
logging.info(conf)
9194

9295
def _save_results(self):

proj/paths.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
db_app = "D:\\Dropbox (UCL - SWC)\\Apps\\loco_upload"
2626

2727
# winstor paths
28-
winstor_main = Path("/nfs/winstor/branco/Federico/Locomotion/control")
28+
winstor_main = Path("/nfs/winstor/branco/Federico/Locomotion/control/data")
2929
winstor_trial_cache = (
3030
"/nfs/winstor/branco/Federico/Locomotion/control/m46_cache.h5"
3131
)

0 commit comments

Comments
 (0)