From 96df55b8a25a9947c90b27dcd6b864ca342aaff4 Mon Sep 17 00:00:00 2001
From: "robinwilliam.hundt" <robinwilliam.hundt@stud.uni-goettingen.de>
Date: Wed, 24 Oct 2018 11:09:49 +0200
Subject: [PATCH] Clarification in README and importer

---
 README.md        | 10 +++++-----
 util/importer.py |  6 +++---
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/README.md b/README.md
index d58e49e5..f20e563d 100644
--- a/README.md
+++ b/README.md
@@ -193,7 +193,7 @@ You need the following:
     generated by [hektor](https://gitlab.gwdg.de/j.michal/hektor)
 2. A .csv file where the columns are: id, name, score, (file suffix). No
    suffix defaults to .c  
-   Supported suffixes: .c , .java , .hs , .s (for mips)  
+   Supported suffixes: .c , .java , .hs , .s or .asm (for mips)  
    Important: The name values must be the same as the ones that are contained in
    the export file file from 1.
     Example:
@@ -204,16 +204,16 @@ You need the following:
     a03, Gamma Ray, 20
     ```
 3. A path to a directory with sample solutions named
-    <id>-lsg.c (same id as in 2.)
+    <id>.c (same id as in 2.)
 4. A path to a directory containing HTML files with an accurate
     description of the task. File name pattern has to be: <id>.html (same id as in 2.)
     ```commandline
     $ tree -L 2
     .
     ├── code-lsg
-    │   ├── a01-lsg.c
-    │   ├── a02-lsg.c
-    │   └── a03-lsg.c
+    │   ├── a01.c
+    │   ├── a02.java
+    │   └── a03.hs
     └── html
         ├── a01.html
         ├── a02.html
diff --git a/util/importer.py b/util/importer.py
index 705549d8..a49641ce 100644
--- a/util/importer.py
+++ b/util/importer.py
@@ -196,9 +196,9 @@ def do_load_submission_types():
         $ tree -L 2
         .
         ├── code-lsg
-        │   ├── a01-lsg.c
-        │   ├── a02-lsg.c
-        │   └── a03-lsg.c
+        │   ├── a01.c
+        │   ├── a02.java
+        │   └── a03.hs
         └── html
             ├── a01.html
             ├── a02.html
-- 
GitLab