Skip to content

Commit

Permalink
bumped pyxantech to pickup 3.9 lock changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rsnodgrass committed Aug 1, 2021
1 parent a0e589e commit ae70bf1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/xantech/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Xantech Multi-Zone Amps",
"version": "0.0.6",
"documentation": "https://github.com/rsnodgrass/hass-xantech",
"requirements": ["pyxantech>=0.6.1", "ratelimit>=2.2.1"],
"requirements": ["pyxantech>=0.6.2", "ratelimit>=2.2.1"],
"dependencies": [],
"codeowners": ["@rsnodgrass"],
"iot_class": "local_polling"
Expand Down
2 changes: 1 addition & 1 deletion custom_components/xantech/media_player.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,8 +308,8 @@ def log_failed_zone_update():
# sometimes the client may have not configured a source, but if the amplifier is set
# to a source other than one defined, go ahead and dynamically create that source. This
# could happen if the user changes the source through a different app or command.
LOG.warning(f"Invalid source id '{source_id}' specified for zone {self.zone_info}, adding this source!")
source_name = f"Source {source_id}"
LOG.warning(f"Undefined source id '{source_id}' for zone {self.zone_info}, adding {source_name}!")
self._source_id_to_name[source_id] = source_name
self._source_name_to_id[source_name] = source_id

Expand Down

0 comments on commit ae70bf1

Please sign in to comment.