Skip to content

Commit 62a9aae

Browse files
authored
Ensure self._uuid isn't None
(otherwise os.path.join will give an exception)
1 parent 15947f6 commit 62a9aae

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

simvue/run.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,10 @@ def _start(self, reconnect=False):
203203
"""
204204
if self._mode == 'disabled':
205205
return True
206-
206+
207+
if self._mode != 'offline':
208+
self._uuid = 'notused'
209+
207210
logger.debug('Starting run')
208211

209212
self._check_token()

0 commit comments

Comments
 (0)