summaryrefslogtreecommitdiff
path: root/paste/auth
diff options
context:
space:
mode:
authorianb <devnull@localhost>2006-01-30 09:22:39 +0000
committerianb <devnull@localhost>2006-01-30 09:22:39 +0000
commit827af4508a3662167554a248ae53a51d9c75b96c (patch)
treee7bf65896f67a041e6e187bfe45a8de7a483d744 /paste/auth
parent49c944eaed046156f516093fe7fdf44b6d0eb38b (diff)
downloadpaste-827af4508a3662167554a248ae53a51d9c75b96c.tar.gz
remove debugging prints from openid
Diffstat (limited to 'paste/auth')
-rw-r--r--paste/auth/open_id.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/paste/auth/open_id.py b/paste/auth/open_id.py
index 1202f59..d4996d4 100644
--- a/paste/auth/open_id.py
+++ b/paste/auth/open_id.py
@@ -261,10 +261,7 @@ class AuthOpenIDHandler(object):
username = self.url_to_username(request['environ'], openid_url)
else:
username = openid_url
- print "login! %r" % username
- print request['environ'].keys()
if 'paste.auth_tkt.set_user' in request['environ']:
- print "Set with", request['environ']['paste.auth_tkt.set_user']
request['environ']['paste.auth_tkt.set_user'](username)
if not self.login_redirect:
fmt = ("If you had supplied a login redirect path, you would have "
@@ -410,7 +407,6 @@ def make_open_id_middleware(
login_redirect=login_redirect, catch_401=catch_401,
url_to_username=url_to_username or None)
if apply_auth_tkt:
- print "Applying auth_tkt"
from paste.auth import auth_tkt
new_app = auth_tkt.make_auth_tkt_middleware(
new_app, global_conf, logout_path=auth_tkt_logout_path)