From 6409552e706846c08e34bbde4f4b141fedd8ffd0 Mon Sep 17 00:00:00 2001 From: Petter Reinholdtsen Date: Thu, 12 Sep 2013 12:53:10 +0200 Subject: [PATCH] Fix exmachine import. --- Makefile | 2 +- exmachina/__init__.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 exmachina/__init__.py diff --git a/Makefile b/Makefile index 65622287b..6a6a323e0 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ install: default cp -a static themes $(DESTDIR)$(DATADIR)/ cp -a *.py modules templates $(DESTDIR)$(PYDIR)/ mkdir -p $(DESTDIR)$(PYDIR)/exmachina - cp -a exmachina/exmachina.py $(DESTDIR)$(PYDIR)/exmachina/. + cp -a exmachina/exmachina.py exmachina/__init__.py $(DESTDIR)$(PYDIR)/exmachina/. cp share/init.d/plinth $(DESTDIR)/etc/init.d install plinth $(DESTDIR)/usr/bin/ mkdir -p $(DESTDIR)/var/lib/plinth/cherrypy_sessions $(DESTDIR)/var/log/plinth $(DESTDIR)/var/run diff --git a/exmachina/__init__.py b/exmachina/__init__.py new file mode 100644 index 000000000..e69de29bb