Skip to content

Commit

Permalink
Fixed a variable spelling error - not sure how this made it this far...
Browse files Browse the repository at this point in the history
  • Loading branch information
bmenchaca committed Aug 29, 2018
1 parent 17e6095 commit c561caa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion icomfort3-scraper/lcc_zone.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def set_away_mode(self, session):
set_away_url = IC3Session.create_url(IComfort3Zone.SET_AWAY_PATH)
payload = [('lccId', self.lcc_id), ('currentzoneId', self. zone_id)]
resp = session.post_url_json(set_away_url, payload, self.hd_url)
rsep_json = session.process_as_json(resp)
resp_json = session.process_as_json(resp)
if not resp_json:
return False
return self.__parse_update(resp_json)
Expand Down

0 comments on commit c561caa

Please sign in to comment.