From c49c725e43cfbc9d90b5e9ebbf93a32e71c7e6a9 Mon Sep 17 00:00:00 2001 From: Michael Gundlach Date: Mon, 23 Aug 2010 13:07:43 -0400 Subject: Typo --- nova/wsgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova/wsgi.py b/nova/wsgi.py index d52bf855d..096d5843f 100644 --- a/nova/wsgi.py +++ b/nova/wsgi.py @@ -221,7 +221,7 @@ class Controller(object): MIME types to information needed to serialize to that type. """ _metadata = getattr(type(self), "_serialization_metadata", {}) - serializer = wsgi.Serializer(request.environ, _metadata) + serializer = Serializer(request.environ, _metadata) return serializer.to_content_type(data) -- cgit