summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Bicking <ian@ianbicking.org>2007-07-22 17:06:23 +0000
committerIan Bicking <ian@ianbicking.org>2007-07-22 17:06:23 +0000
commit50e3ba883a0759ba12ba6987ac65d2303bc0387e (patch)
tree9c3b3262b200c2d9f84c7f8805ae3029ff913d2b
parenta59b06e50cd4c7c66285c09800a0628e7da4d384 (diff)
downloadpaste-git-50e3ba883a0759ba12ba6987ac65d2303bc0387e.tar.gz
remove tabs
-rw-r--r--paste/auth/open_id.py4
-rw-r--r--paste/util/scgiserver.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/paste/auth/open_id.py b/paste/auth/open_id.py
index 5fbfcc8..f6efe61 100644
--- a/paste/auth/open_id.py
+++ b/paste/auth/open_id.py
@@ -207,8 +207,8 @@ class AuthOpenIDHandler(object):
# that will get us to process the server response. We will
# need the token from the beginAuth call when processing
# the response. A cookie or a session object could be used
- # to accomplish this, but for simplicity here we just add
- # it as a query parameter of the return-to URL.
+ # to accomplish this, but for simplicity here we just add
+ # it as a query parameter of the return-to URL.
return_to = self.build_url(request, 'process', token=info.token)
# Now ask the library for the URL to redirect the user to
diff --git a/paste/util/scgiserver.py b/paste/util/scgiserver.py
index dbab36f..762f897 100644
--- a/paste/util/scgiserver.py
+++ b/paste/util/scgiserver.py
@@ -11,7 +11,7 @@ application objects. To use it, subclass the SWAP class like so::
def __init__(self, *args, **kwargs):
self.prefix = '/canal'
self.app_obj = TestAppClass
- swap.SWAP.__init__(self, *args, **kwargs)
+ swap.SWAP.__init__(self, *args, **kwargs)
where 'TestAppClass' is the application object from WSGI and '/canal'
is the prefix for what is served by the SCGI Web-server-side process.