There seems to be a bug in spyne.server.django.DjangoView.as_view:
If you use 'server' in the initkwargs, the call to cls(server=server, **initkwargs) will fail with 'keyword argument repeated'.
'server' should be popped from the initkwargs instead of get.
There seems to be a bug in
spyne.server.django.DjangoView.as_view
: If you use'server'
in theinitkwargs
, the call tocls(server=server, **initkwargs)
will fail with'keyword argument repeated'
.'server'
should be popped from theinitkwargs
instead of get.