Closed Anto79-ops closed 1 year ago
Can this be implemented in a new version of feedparser? So anyone can update?
If you need a release/update while waiting for a new one here, you can use my fork: https://github.com/FuzzyMistborn/feedparser as a custom repo in HACS.
From a fellow in the beta chat RobertD502
Just remove the @asyncio.coroutine decorator on line 46 of sensor.py and change "def async_setup_plaform" on line 47 to "async def async_setup_plaform" That way you get to still use the component.
I just tried that, and it worked fine. Actually, i commented out the @asyncio.coroutine and added the async as suggested.
A made a restart and everything works as before.
Thanks a lot for the tip.
Modify on line 46 & 47 don't work for me, now i've this error on log:
The feedparser platform for the sensor integration does not support platform setup. Please remove it from your config.
HA core in docker
Modify on line 46 & 47 don't work for me, now i've this error on log:
The feedparser platform for the sensor integration does not support platform setup. Please remove it from your config.
HA core in docker
had the same problem, the line was false, copy this in lines 46,47:
"""@asyncio.coroutine"""
async def async_setup_platform(
had the same problem, the line was false, copy this in lines 46,47:
"""@asyncio.coroutine""" async def async_setup_platform(
Worked fine!
Thanks!
duplicate of #66. There is a PR #69 that, if released, will fix this.
Hey community, I have got a maintainer access to the repository recently. I am going to merge #72 and do a release. I have tested it and I can confirm that the patch works for me and the patch also brings back the local_time
config option.
The 0.1.10
release with the fix is out https://github.com/custom-components/feedparser/releases/tag/0.1.10 :tada:
Hi, running beta and its not liking feedparser.
has to be updated "to not use the asyncio.coroutine decorator"
From a fellow in the beta chat RobertD502