diff --git a/setup.py b/setup.py
index 18baff22a907baf6a99be0f351c770f39151f966..103b79ad4555908def904d02f3cae5a287304380 100644
--- a/setup.py
+++ b/setup.py
@@ -13,7 +13,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
 
 setuptools.setup(
     name="coursebox",
-    version="0.1.20.5",
+    version="0.1.20.6",
     author="Tue Herlau",
     author_email="tuhe@dtu.dk",
     description="A course management system currently used at DTU",
diff --git a/src/coursebox/student_files/student_files.py b/src/coursebox/student_files/student_files.py
index 7a9def42fa111bb79552a256ff75e439ba8eee0e..69ada7185602c91c809fbbe9bc30932d6af27d21 100644
--- a/src/coursebox/student_files/student_files.py
+++ b/src/coursebox/student_files/student_files.py
@@ -33,21 +33,21 @@ def setup_student_files(run_files=True,
     from coursebox.core.info import class_information
     # info = class_information()
     from coursebox.core.info import core_conf
-<<<<<<< HEAD
+    # <<<<<<< HEAD
     # if 'package' not in core_conf:
     if len(core_conf['projects_all']) > 0:
         PACKAGE = list(core_conf['projects_all'].values()).pop()['module_public'].split(".")[0]
     else:
         PACKAGE = [w for w in core_conf['weeks_all'].values() if 'module_public' in w][0]['module_public'].split(".")[0]
-=======
-    try:
-        if len(core_conf['projects_all']) > 0:
-            PACKAGE = list(core_conf['projects_all'].values()).pop()['module_public'].split(".")[0]
-        else:
-            PACKAGE = list(core_conf['weeks_all'].values()).pop()['module_public'].split(".")[0]
-    except Exception as e:
-        PACKAGE = core_conf['package']
->>>>>>> 5f0cf05ea2c51749713d10331847fbe062613bab
+    # =======
+    #     try:
+    #         if len(core_conf['projects_all']) > 0:
+    #             PACKAGE = list(core_conf['projects_all'].values()).pop()['module_public'].split(".")[0]
+    #         else:
+    #             PACKAGE = list(core_conf['weeks_all'].values()).pop()['module_public'].split(".")[0]
+    #     except Exception as e:
+    #         PACKAGE = core_conf['package']
+    # >>>>>>> 5f0cf05ea2c51749713d10331847fbe062613bab
 
     if censor_files:
         assert not run_files, "You cannot run files while you are censoring them -- your scripts will crash. Call with run_files=False."