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']