From 16d6ff3941954683fd55ad99d62084a807e61b22 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Sat, 7 May 2016 17:08:33 +0530 Subject: [PATCH] roundcube: Minor fix in setup process notification --- plinth/modules/roundcube/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plinth/modules/roundcube/__init__.py b/plinth/modules/roundcube/__init__.py index a67364707..9e86c6821 100644 --- a/plinth/modules/roundcube/__init__.py +++ b/plinth/modules/roundcube/__init__.py @@ -65,7 +65,7 @@ def setup(helper, old_version=None): """Install and configure the module.""" helper.call('pre', actions.superuser_run, 'roundcube', ['pre-install']) helper.install(['sqlite3', 'roundcube', 'roundcube-sqlite3']) - helper.call('pre', actions.superuser_run, 'roundcube', ['setup']) + helper.call('post', actions.superuser_run, 'roundcube', ['setup']) def get_status():