mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Fix #681
This commit is contained in:
parent
0d3b028b17
commit
28fdf42238
1 changed files with 2 additions and 2 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in a new issue