From 349daee61476b2564d79dbdf0cf8c1d925441d79 Mon Sep 17 00:00:00 2001 From: Unbit Date: Fri, 10 Oct 2014 10:49:18 +0200 Subject: [PATCH] fixed uwsgidecorators spooler arguments --- uwsgidecorators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uwsgidecorators.py b/uwsgidecorators.py index ec24edc5..e1fa71b7 100644 --- a/uwsgidecorators.py +++ b/uwsgidecorators.py @@ -67,7 +67,7 @@ class postfork(object): class _spoolraw(object): def __call__(self, *args, **kwargs): - arguments = self.base_dict + arguments = self.base_dict.copy() if not self.pass_arguments: if len(args) > 0: arguments.update(args[0])