fix typo in exception message

This commit is contained in:
Rachid Mrad 2023-09-18 15:21:57 -04:00
parent 4db5b94b36
commit 68012389a8
No known key found for this signature in database
GPG key ID: EF38E4CEC4A8F3CF

View file

@ -341,7 +341,7 @@ class Domain(TimeStampedModel, DomainHelper):
if "statuses" not in self._cache:
self._fetch_cache()
if "statuses" not in self._cache:
raise Exception("Can't retreive status from domain info")
raise Exception("Can't retrieve status from domain info")
else:
return self._cache["statuses"]