You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
The text was updated successfully, but these errors were encountered:
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)
The text was updated successfully, but these errors were encountered: