summaryrefslogtreecommitdiff
path: root/python/en.py
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@fri.uni-lj.si>2015-10-14 17:20:50 +0200
committerTimotej Lazar <timotej.lazar@fri.uni-lj.si>2015-10-14 17:20:50 +0200
commitb4840742147fd96ce6f7b3a7b5430bfcc9667a34 (patch)
treeee25f69833338ec02296a3b8213a0f91924a31e4 /python/en.py
parentf0978716a04628543161bd77f6e3ca3af3130f2f (diff)
Add "sandbox violated" hint for Python
Diffstat (limited to 'python/en.py')
-rw-r--r--python/en.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/python/en.py b/python/en.py
index 33453a9..5929a97 100644
--- a/python/en.py
+++ b/python/en.py
@@ -21,6 +21,9 @@ general_msg = {
''',
'timed_out':'''\
+''',
+
+ 'sandbox_violation': '''\
'''
}
@@ -61,5 +64,7 @@ hint = {
'eof_error' : [general_msg['eof_error']],
- 'timed_out' : [general_msg['timed_out']]
-} \ No newline at end of file
+ 'timed_out' : [general_msg['timed_out']],
+
+ 'sandbox_violation': [general_msg['sandbox_violation']]
+}