You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "/usr/bin/khal", line 59, in <module>
from khal import khalendar, backend
File "/usr/lib/python2.7/site-packages/khal/khalendar.py", line 36, in <module>
from khal import backend, caldav
File "/usr/lib/python2.7/site-packages/khal/caldav.py", line 310
if response.status_code == 404: return True else: raise
Line 310 reads
if response.status_code == 404: return True else: raise
Inserting line breaks helps:
if response.status_code == 404:
return True
else:
raise
The text was updated successfully, but these errors were encountered:
I got the following error with latest git master:
Line 310 reads
Inserting line breaks helps:
The text was updated successfully, but these errors were encountered: