From 53f27ecc404dc166b14ac02693ca7504a1a7dd5f Mon Sep 17 00:00:00 2001 From: Steve Perkins Date: Thu, 7 Jul 2016 15:32:46 -0400 Subject: [PATCH] Fix misleading EPOCH comment. https://github.com/pallets/itsdangerous/issues/46 1/1/2011 cutoff was removed, but comment was not updated. --- itsdangerous.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/itsdangerous.py b/itsdangerous.py index 5e53a32..98e4dba 100644 --- a/itsdangerous.py +++ b/itsdangerous.py @@ -391,8 +391,7 @@ class TimestampSigner(Signer): """ def get_timestamp(self): - """Returns the current timestamp. This implementation returns the - seconds since 1/1/2011. The function must return an integer. + """Returns the current timestamp. The function must return an integer. """ return int(time.time())