From 31109642279167244586683457506483729a41ba Mon Sep 17 00:00:00 2001 From: Thom Troy Date: Sun, 8 Oct 2017 20:59:47 +0100 Subject: [PATCH] fix typo --- pyephember/pyephember.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyephember/pyephember.py b/pyephember/pyephember.py index b2a5fe7..49f6ebd 100755 --- a/pyephember/pyephember.py +++ b/pyephember/pyephember.py @@ -306,7 +306,7 @@ def activate_boost_by_id(self, zone_id, target_temperature, num_hours=1): return boost_data.get("isSuccess", False) - def activatae_boost_by_name(self, + def activate_boost_by_name(self, zone_name, target_temperature, num_hours=1): diff --git a/setup.py b/setup.py index 11bee23..7f6b183 100755 --- a/setup.py +++ b/setup.py @@ -1,14 +1,14 @@ from setuptools import setup, find_packages setup(name='pyephember', - version='0.1.0', + version='0.1.1', description='Python library to work with ember from EPH Controls', keywords='eph ember', author='Thom Troy', author_email='ttroy50@gmail.com', license='MIT', url='https://github.com/ttroy50/pyephember', - download_url='https://github.com/ttroy50/pyephember/archive/0.1.0.tar.gz', + download_url='https://github.com/ttroy50/pyephember/archive/0.1.1.tar.gz', platforms=["any"], packages=find_packages(), zip_safe=False,