From 7a74199ad6d96810eb4c9a6c9b734927e7483b20 Mon Sep 17 00:00:00 2001 From: Petter Reinholdtsen Date: Mon, 7 Oct 2013 09:15:54 +0200 Subject: [PATCH] Add missing return statement to parse_arguments(). --- plinth.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plinth.py b/plinth.py index abd12e56f..2dda4287b 100755 --- a/plinth.py +++ b/plinth.py @@ -97,6 +97,7 @@ def parse_arguments(): cfg.pidfile = "plinth.pid" except AttributeError: cfg.pidfile = "plinth.pid" + return args def setup(): args = parse_arguments()