Skip to content

Commit

Permalink
Small typo fix
Browse files Browse the repository at this point in the history
Small typo fix: "Requting" -> "Requesting"
  • Loading branch information
eldios authored Jan 14, 2019
1 parent 517fd42 commit 5b7b494
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PyViCare/PyViCare.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def __restoreToken(self, username, password,token_file=None):
logger.warning("Reuse existing token")
oauth = OAuth2Session(client_id,token=self._deserializeToken(token_file))
else:
logger.warning("Requting new token")
logger.warning("Requesting new token")
oauth = self.getNewToken(username, password,token_file)
return oauth

Expand Down Expand Up @@ -392,4 +392,4 @@ def getDomesticHotWaterMinTemperature(self):
try:
return self.getProperty("heating.dhw.temperature")["actions"][0]["fields"][0]["min"]
except KeyError:
return "error"
return "error"

0 comments on commit 5b7b494

Please sign in to comment.