Skip to content

Commit

Permalink
Output the proper information for the web versions (#21)
Browse files Browse the repository at this point in the history
While exploring home-assistant/core/issues/101713, I got extra confused by the wrong output.
  • Loading branch information
mrwacky42 authored Oct 11, 2023
1 parent fd59425 commit be817b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hole/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,9 @@ def web_current(self):
@property
def web_latest(self):
"""Return the latest version of the web interface of the *hole instance."""
return self.versions["FTL_latest"]
return self.versions["web_latest"]

@property
def web_update(self):
"""Return wether an update of web interface of the *hole instance is available."""
return self.versions["FTL_update"]
return self.versions["web_update"]

0 comments on commit be817b2

Please sign in to comment.