summaryrefslogtreecommitdiffstats
path: root/base/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'base/core.py')
-rw-r--r--base/core.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/core.py b/base/core.py
index 6e42ebd..b60d9c3 100644
--- a/base/core.py
+++ b/base/core.py
@@ -34,7 +34,7 @@ PROBLEM = os.getenv("PROBLEM")
LANGUAGE = os.getenv('LANGUAGE')
# Reading problem specific options from problem config
-[COUNT, CONFIG] = config.parse()
+CONFIG = config.parse()
# Initializing log
prefix = SUBID + ':' + USER + ':' + PROBLEM + ':' + LANGUAGE + ': '
@@ -54,7 +54,7 @@ elif compret: # Unspecified Compilation error
else:
# Start running
update.status ('RUN', SUBID, -1, -1);
- arr = run.main (COUNT, CONFIG)
+ arr = run.main (CONFIG)
charstat = 'CWTMRU' # [ correct, wrong, time, memory, runtime, unexpected ]