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
SyntaxWarning: invalid escape sequence '\d' Fix: Need to change twice
From pattern = re.compile("^\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}$") To pattern = re.compile(r"^\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}$")
In lines 165 and 208 of the ipwatch.py file
Thanks for your software Manuel P
The text was updated successfully, but these errors were encountered:
No branches or pull requests
SyntaxWarning: invalid escape sequence '\d'
Fix: Need to change twice
From
pattern = re.compile("^\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}$")
To
pattern = re.compile(r"^\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}$")
In lines 165 and 208 of the ipwatch.py file
Thanks for your software
Manuel P
The text was updated successfully, but these errors were encountered: