From: Fredrik Tolf Date: Wed, 8 Aug 2012 07:14:47 +0000 (+0200) Subject: Uglified util.formparams to be 2.5-compatible as well. X-Git-Url: http://dolda2000.com/gitweb/?p=wrw.git;a=commitdiff_plain;h=b342d9b2ded52cff1d172dbeedfd1aff40d92a1f Uglified util.formparams to be 2.5-compatible as well. --- diff --git a/wrw/util.py b/wrw/util.py index 7276607..2e3a795 100644 --- a/wrw/util.py +++ b/wrw/util.py @@ -13,9 +13,9 @@ def formparams(callable): spec = inspect.getargspec(callable) args = dict(data.items()) args["req"] = req - if not spec.keywords: + if not spec[2]: for arg in list(args): - if arg not in spec.args: + if arg not in spec[0]: del args[arg] return callable(**args) return wrapper