diff --git a/lustmolch/lustmolch.py b/lustmolch/lustmolch.py
index 881faefdc673f3f5864fd2c192289d706b4f13b7..29c3977cb21f623ab0acda2c025217f370a29d19 100755
--- a/lustmolch/lustmolch.py
+++ b/lustmolch/lustmolch.py
@@ -12,7 +12,7 @@ from .config import config, DEFAULT_TEMPLATE_DIR
 
 logging.basicConfig(format='%(levelname)s:%(message)s', level=config['log_level'])
 
-env = Environment(loader=PackageLoader('lustmolch', str(Path(__file__).parent / 'templates')))
+env = Environment(loader=PackageLoader('lustmolch',  'templates'))
 cfg_template = namedtuple('cfg_template', ['source', 'path', 'filename'])
 
 template_files_host = [
diff --git a/setup.py b/setup.py
index fd3a02741d95e5a95063e1ad79f3a5a134df3598..82493df97c4d138e0474894eb4c4c746090181c0 100644
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
 from setuptools import setup
 
-VERSION = '1.0.4'
+VERSION = '1.0.5'
 AUTHOR = 'Michael Loipführer'