From 28fdf422388fcae4f76d8dda3809cfcc27a85136 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sat, 21 Oct 2017 17:23:24 +0200 Subject: [PATCH] Fix #681 --- vdirsyncer/storage/dav.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vdirsyncer/storage/dav.py b/vdirsyncer/storage/dav.py index 2c84b20..8fafcd0 100644 --- a/vdirsyncer/storage/dav.py +++ b/vdirsyncer/storage/dav.py @@ -724,8 +724,8 @@ class CalDAVStorage(DAVStorage): example, the following would synchronize the timerange from one year in the past to one year in the future:: - start_date = datetime.now() - timedelta(days=365) - end_date = datetime.now() + timedelta(days=365) + start_date = "datetime.now() - timedelta(days=365)" + end_date = "datetime.now() + timedelta(days=365)" Either both or none have to be specified. The default is to synchronize everything.