Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fritzbox_smart_home_temperature.py fails due to missing user name #9

Closed
wvogel opened this issue Jan 27, 2021 · 1 comment · Fixed by #10
Closed

fritzbox_smart_home_temperature.py fails due to missing user name #9

wvogel opened this issue Jan 27, 2021 · 1 comment · Fixed by #10
Assignees

Comments

@wvogel
Copy link

wvogel commented Jan 27, 2021

And here's the fix:

Line 37:
connection = FritzConnection(address=config.server, password=config.password, use_tls=config.useTls)
needs to be replaced by
connection = FritzConnection(address=config.server, user=config.user, password=config.password, use_tls=config.useTls)

@ma4nn ma4nn self-assigned this Jan 28, 2021
@ma4nn ma4nn linked a pull request Jan 28, 2021 that will close this issue
@ma4nn
Copy link
Owner

ma4nn commented Jan 28, 2021

Hi @wvogel,

thanks for your contribution!

Can you please check the linked PR if that contains all your requested changes?

Best regards,
Christoph

@ma4nn ma4nn closed this as completed in #10 Feb 3, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants