Skip to content

Commit fcfc009

Browse files
committed
Fix typo error
1 parent dee863d commit fcfc009

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lnetatmo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ def lastData(self, station=None, exclude=0):
322322
# If no module_name has been setup, use _id by default
323323
if "module_name" not in module : module['module_name'] = module["_id"]
324324
lastD[module['module_name']] = ds.copy()
325-
lastD[s['module_name']]['When'] = lastD[s['module_name']].pop("time_utc") if 'time_utc' in lastD[s['module_name']] else time.time()
325+
lastD[module['module_name']]['When'] = lastD[module['module_name']].pop("time_utc") if 'time_utc' in lastD[module['module_name']] else time.time()
326326
# For potential use, add battery and radio coverage information to module data if present
327327
for i in ('battery_vp', 'rf_status') :
328328
if i in module : lastD[module['module_name']][i] = module[i]

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setup(
66
name='lnetatmo',
7-
version='1.4.4',
7+
version='1.4.5',
88
classifiers=[
99
'Development Status :: 5 - Production/Stable',
1010
'Intended Audience :: Developers',
@@ -17,7 +17,7 @@
1717
scripts=[],
1818
data_files=[],
1919
url='https://github.com/philippelt/netatmo-api-python',
20-
download_url='https://github.com/philippelt/netatmo-api-python/tarball/v1.4.4.tar.gz',
20+
download_url='https://github.com/philippelt/netatmo-api-python/tarball/v1.4.5.tar.gz',
2121
license='GPL V3',
2222
description='Simple API to access Netatmo weather station data from any python script.'
2323
)

0 commit comments

Comments
 (0)