Skip to content

Commit

Permalink
Upgrade to async_upnp_client==0.13.6 and use manufacturer from device
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenLooman committed Dec 14, 2018
1 parent b992771 commit 8426a51
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion homeassistant/components/media_player/dlna_dmr.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import homeassistant.helpers.config_validation as cv
from homeassistant.util import get_local_ip

REQUIREMENTS = ['async-upnp-client==0.13.5']
REQUIREMENTS = ['async-upnp-client==0.13.6']

_LOGGER = logging.getLogger(__name__)

Expand Down
4 changes: 2 additions & 2 deletions homeassistant/components/upnp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from .const import LOGGER as _LOGGER
from .device import Device

REQUIREMENTS = ['async-upnp-client==0.13.5']
REQUIREMENTS = ['async-upnp-client==0.13.6']

NOTIFICATION_ID = 'upnp_notification'
NOTIFICATION_TITLE = 'UPnP/IGD Setup'
Expand Down Expand Up @@ -157,7 +157,7 @@ async def async_setup_entry(hass: HomeAssistantType,
(DOMAIN, device.udn)
},
name=device.name,
# manufacturer=device.manufacturer,
manufacturer=device.manufacturer,
)

# set up sensors
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ asterisk_mbox==0.5.0

# homeassistant.components.upnp
# homeassistant.components.media_player.dlna_dmr
async-upnp-client==0.13.5
async-upnp-client==0.13.6

# homeassistant.components.light.avion
# avion==0.10
Expand Down

0 comments on commit 8426a51

Please sign in to comment.