From 608da06a9be881c7f68b80c229473180fafb9c8b Mon Sep 17 00:00:00 2001 From: Chuck Thier Date: Tue, 24 Aug 2010 18:48:00 +0000 Subject: [PATCH] Cleaned up a couple of doc strings in proxy.server --- swift/proxy/server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swift/proxy/server.py b/swift/proxy/server.py index 5cfb23fbdc..140bc5dbc4 100644 --- a/swift/proxy/server.py +++ b/swift/proxy/server.py @@ -47,7 +47,7 @@ def update_headers(response, headers): Helper function to update headers in the response. :param response: webob.Response object - :parm headers: dictionary headers + :param headers: dictionary headers """ if hasattr(headers, 'items'): headers = headers.items() @@ -1264,7 +1264,7 @@ class Application(BaseApplication): return None def app_factory(global_conf, **local_conf): + """paste.deploy app factory for creating WSGI proxy apps.""" conf = global_conf.copy() conf.update(local_conf) - """paste.deploy app factory for creating WSGI proxy apps.""" return Application(conf)