Upgrade psutil to 4.4.0 (#4032)

This commit is contained in:
Fabian Affolter 2016-10-24 22:24:33 +02:00 committed by GitHub
parent 4ecfc7d066
commit 627517cbbc
2 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@ from homeassistant.helpers.entity import Entity
import homeassistant.helpers.config_validation as cv
import homeassistant.util.dt as dt_util
REQUIREMENTS = ['psutil==4.3.1']
REQUIREMENTS = ['psutil==4.4.0']
_LOGGER = logging.getLogger(__name__)
@ -51,7 +51,7 @@ PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
# pylint: disable=unused-argument
def setup_platform(hass, config, add_devices, discovery_info=None):
"""Setup the System sensors."""
"""Set up the system monitor sensors."""
dev = []
for resource in config[CONF_RESOURCES]:
if 'arg' not in resource: