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
When running miio-extract-tokens, i get the following error:
# miio-extract-tokens backup.ab
Traceback (most recent call last):
File "/usr/local/bin/miio-extract-tokens", line 7, in <module>
from miio.extract_tokens import main
File "/usr/local/lib/python3.4/dist-packages/miio/__init__.py", line 2, in <module>
from miio.airconditioningcompanion import AirConditioningCompanion
File "/usr/local/lib/python3.4/dist-packages/miio/airconditioningcompanion.py", line 7, in <module>
from .click_common import command, format_output, EnumType
File "/usr/local/lib/python3.4/dist-packages/miio/click_common.py", line 9, in <module>
sys.version_info)
TypeError: not all arguments converted during string formatting
Any idea how to resolve this?
The text was updated successfully, but these errors were encountered:
You have to use python 3.5 or newer. However, the error should be fixed, too. The error is caused by the fact that sys.version_info is a tuple, but the format string has just a single placeholder in place.
When running miio-extract-tokens, i get the following error:
Any idea how to resolve this?
The text was updated successfully, but these errors were encountered: