commit 1b9cb5e63687ca41abadb38282717b63620c719b Author: Simone Basso bassosimone@gmail.com Date: Mon Sep 19 12:43:07 2016 +0200
ooni/agent/scheduler.py: fix easter egg date --- ooni/agent/scheduler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ooni/agent/scheduler.py b/ooni/agent/scheduler.py index e8fef53..be141eb 100644 --- a/ooni/agent/scheduler.py +++ b/ooni/agent/scheduler.py @@ -53,7 +53,7 @@ class FileSystemlockAndMutex(object):
# We use this date to indicate that the scheduled task has never run. # Easter egg, try to see what is special about this date :)? -CANARY_DATE = datetime(1957, 8, 4, tzinfo=tz.tzutc()) +CANARY_DATE = datetime(1957, 10, 4, tzinfo=tz.tzutc())
class DidNotRun(Exception):