Skip to content

Commit 3cdffd5

Browse files
committed
BEDGE-2699 - minor update to displayed error text
1 parent 34200aa commit 3cdffd5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -680,14 +680,14 @@ def load_state(self):
680680
data = load(f)
681681
except ValueError as e:
682682
self.show_error(
683-
"LoadError: Failed to Load State : %s "
683+
"LoadError: Failed to load previous simulation state : %s "
684684
% e.message
685685
)
686686
return
687687

688688
if 'active_server' not in data or 'port' not in data \
689689
or 'slaves_list' not in data or 'slaves_memory' not in data:
690-
self.show_error("LoadError: Failed to Load State : JSON Key "
690+
self.show_error("LoadError: Failed to load previous simulation state : JSON Key "
691691
"Missing")
692692
return
693693

0 commit comments

Comments
 (0)