diff --git a/setup.py b/setup.py
index 2651ac99306d1540d0db77033c5edafbf6e4c2fe..94d0444c9c8dfc356e7501cade1b10b981a62b16 100644
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
 # beamer-slider
 setuptools.setup(
     name="coursebox",
-    version="0.1.18.10",
+    version="0.1.18.13",
     author="Tue Herlau",
     author_email="tuhe@dtu.dk",
     description="A course management system currently used at DTU",
diff --git a/src/coursebox.egg-info/PKG-INFO b/src/coursebox.egg-info/PKG-INFO
index 2e4a9bb2ec74de76e3ba6263eef22600030e3d98..635ffde4e5000fc583e16c1796e80cc57626def8 100644
--- a/src/coursebox.egg-info/PKG-INFO
+++ b/src/coursebox.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: coursebox
-Version: 0.1.18.10
+Version: 0.1.18.13
 Summary: A course management system currently used at DTU
 Home-page: https://lab.compute.dtu.dk/tuhe/coursebox
 Author: Tue Herlau
diff --git a/src/coursebox.egg-info/SOURCES.txt b/src/coursebox.egg-info/SOURCES.txt
index 840504141bfb28bd30dd0fbeeece732d9a012e32..811f494d4a0b56ff40080d2f33ee54719a2b460e 100644
--- a/src/coursebox.egg-info/SOURCES.txt
+++ b/src/coursebox.egg-info/SOURCES.txt
@@ -10,6 +10,8 @@ src/coursebox.egg-info/SOURCES.txt
 src/coursebox.egg-info/dependency_links.txt
 src/coursebox.egg-info/requires.txt
 src/coursebox.egg-info/top_level.txt
+src/coursebox/admin/__init__.py
+src/coursebox/admin/gitlab.py
 src/coursebox/book/__init__.py
 src/coursebox/book/exam_includer.py
 src/coursebox/core/__init__.py
diff --git a/src/coursebox/admin/__init__.py b/src/coursebox/admin/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/src/coursebox/core/info_paths.py b/src/coursebox/core/info_paths.py
index 22714ab0a3f758b9d1ff4c5010a5b1ac851f6d28..a775779caf87f1256dd564b0b2e5d7d0bf465609 100644
--- a/src/coursebox/core/info_paths.py
+++ b/src/coursebox/core/info_paths.py
@@ -69,6 +69,9 @@ def get_paths():
         'docs': root_02450public +"/src/docs",
         'src': root_02450public + "/src",
     }
+    if not os.path.isdir(paths['book']):
+        paths['book'] =  root_02450public + "/Notes/Latex"
+
     if os.path.exists(os.path.dirname(paths['instructor_project_evaluations'])):
         if not os.path.isdir(paths['instructor_project_evaluations']):
             os.mkdir(paths['instructor_project_evaluations'])