Add missing return statement to parse_arguments().

This commit is contained in:
Petter Reinholdtsen 2013-10-07 09:15:54 +02:00
parent 692ac6fead
commit 7a74199ad6

View File

@ -97,6 +97,7 @@ def parse_arguments():
cfg.pidfile = "plinth.pid"
except AttributeError:
cfg.pidfile = "plinth.pid"
return args
def setup():
args = parse_arguments()