diff --git a/authentic/sessions.py b/authentic/sessions.py index 752acdb..e255ca8 100644 --- a/authentic/sessions.py +++ b/authentic/sessions.py @@ -129,7 +129,6 @@ class StorageSessionManager(SessionManager): # if HTTPS on set secure flag on the cookie, always set the HTTPOnly flag def _set_cookie(self, value, **attrs): - print '_set_cookie', value, attrs if get_request().environ.get('HTTPS'): attrs['secure'] = 1 attrs['HTTPOnly'] = 1 @@ -166,7 +165,6 @@ class StorageSessionManager(SessionManager): raise KeyError def finish_successful_request(self): - print get_request().session.__dict__ SessionManager.finish_successful_request(self) def expire_session(self):