From 43a614fca5623afb695a78925fe21a9536d9e19d Mon Sep 17 00:00:00 2001 From: fonfon Date: Thu, 11 Sep 2014 12:23:52 +0200 Subject: [PATCH] plinth should be run via './bin/plinth' now --- HACKING | 2 +- bin/plinth | 0 plinth/__init__.py | 2 -- plinth/modules/first_boot/__init__.py | 2 +- 4 files changed, 2 insertions(+), 4 deletions(-) mode change 100644 => 100755 bin/plinth diff --git a/HACKING b/HACKING index 5d178d951..2c21151fa 100644 --- a/HACKING +++ b/HACKING @@ -18,7 +18,7 @@ 2. Plinth also support running without installing (as much as possible). Simply run it as: - $ sudo python -m plinth --no-daemon --debug + $ sudo ./bin/plinth --no-daemon --debug In this mode, Plinth runs in working directory without need for installation. It uses the plinth.conf config file in the working diff --git a/bin/plinth b/bin/plinth old mode 100644 new mode 100755 diff --git a/plinth/__init__.py b/plinth/__init__.py index 16ada04f8..94f997920 100644 --- a/plinth/__init__.py +++ b/plinth/__init__.py @@ -19,6 +19,4 @@ Plinth package init file """ -from plinth import context_processors - __version__ = '0.3.2' diff --git a/plinth/modules/first_boot/__init__.py b/plinth/modules/first_boot/__init__.py index fa89e3444..b9a2a74f5 100644 --- a/plinth/modules/first_boot/__init__.py +++ b/plinth/modules/first_boot/__init__.py @@ -19,6 +19,6 @@ Plinth module for first boot wizard """ -from . import first_boot, middleware +from . import first_boot __all__ = ['first_boot']