summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2014-11-26 15:06:02 -0500
committerTres Seaver <tseaver@palladion.com>2014-11-26 15:06:02 -0500
commitea58f249f89bb9f48b926baf1e4fcc04832db672 (patch)
treea2817734b4deacf6f0103030993951f6afab5c26
parentbc56b88f9d306e510044dc9fede0d36d8e88d8eb (diff)
downloadpyramid-ea58f249f89bb9f48b926baf1e4fcc04832db672.tar.gz
pyramid-ea58f249f89bb9f48b926baf1e4fcc04832db672.tar.bz2
pyramid-ea58f249f89bb9f48b926baf1e4fcc04832db672.zip
79 columns.
-rw-r--r--pyramid/authentication.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/authentication.py b/pyramid/authentication.py
index aefa180b5..09c8a2d3a 100644
--- a/pyramid/authentication.py
+++ b/pyramid/authentication.py
@@ -928,7 +928,7 @@ class AuthTktCookieHelper(object):
if reissue and not hasattr(request, '_authtkt_reissued'):
if ( (now - timestamp) > self.reissue_time ):
- # work around https://github.com/Pylons/pyramid/issues#issue/108
+ # See https://github.com/Pylons/pyramid/issues#issue/108
tokens = list(filter(None, tokens))
headers = self.remember(request, userid, max_age=self.max_age,
tokens=tokens)