We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
2025-01-21 11:46:11.835 WARNING (ImportExecutor_0) [py.warnings] /config/custom_components/mikrotik_router/coordinator.py:1584: SyntaxWarning: invalid escape sequence '\.'
Start homeassistant.
No warning
2025-01-21 11:46:11.835 WARNING (ImportExecutor_0) [py.warnings] /config/custom_components/mikrotik_router/coordinator.py:1584: SyntaxWarning: invalid escape sequence '\.' version = re.sub("[^0-9\.]", "", full_version[0:split_end])
The text was updated successfully, but these errors were encountered:
double escaping is required
version = re.sub("[^0-9\\.]", "", full_version[0:split_end])
Sorry, something went wrong.
double escaping is required version = re.sub("[^0-9\\.]", "", full_version[0:split_end])
Does your error disappear when you apply this?
Yes.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
Not stale.
No branches or pull requests
Describe the issue
How to reproduce the issue
Start homeassistant.
Expected behavior
No warning
Software versions
Traceback/Error logs
The text was updated successfully, but these errors were encountered: