summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Brox <tobixen@tobixen.no>2021-08-20 12:25:43 +0200
committerTobias Brox <tobixen@tobixen.no>2021-08-20 12:25:43 +0200
commit17ce149635c0a4d44015d60a2d5362dec28d521c (patch)
treef4bf2932748cde6a102f8899251e52d40fd25759
parent78b9627852b7c12fb04281b787bc10dca1464392 (diff)
downloadpython-caldav-17ce149635c0a4d44015d60a2d5362dec28d521c.zip
typo fix in the name of an error class
-rw-r--r--caldav/lib/error.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/caldav/lib/error.py b/caldav/lib/error.py
index 2c38434..7d18b57 100644
--- a/caldav/lib/error.py
+++ b/caldav/lib/error.py
@@ -87,7 +87,7 @@ class NotFoundError(DAVError):
class ConsistencyError(DAVError):
pass
-class ReponseError(DAVError):
+class ResponseError(DAVError):
pass
exception_by_method = defaultdict(lambda: DAVError)