We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34200aa commit 3cdffd5Copy full SHA for 3cdffd5
main.py
@@ -680,14 +680,14 @@ def load_state(self):
680
data = load(f)
681
except ValueError as e:
682
self.show_error(
683
- "LoadError: Failed to Load State : %s "
+ "LoadError: Failed to load previous simulation state : %s "
684
% e.message
685
)
686
return
687
688
if 'active_server' not in data or 'port' not in data \
689
or 'slaves_list' not in data or 'slaves_memory' not in data:
690
- self.show_error("LoadError: Failed to Load State : JSON Key "
+ self.show_error("LoadError: Failed to load previous simulation state : JSON Key "
691
"Missing")
692
693
0 commit comments