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
Description
DeprecationWarning: urllib.parse.splittag() is deprecated as of 3.8, use urllib.parse.urlparse() instead
splittag is used in the following places
splittag
.//vos/vos/vos.py: from urllib import splittag .//vos/vos/vos.py: splittag = six.moves.urllib.parse.splittag .//vos/vos/vos.py: (url, tag) = splittag(prop) .//vos/vos/vos.py: (url, prop_name) = splittag(prop)
Remove use of splittag.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
DeprecationWarning: urllib.parse.splittag() is deprecated as of 3.8, use urllib.parse.urlparse() instead
splittag
is used in the following placesRemove use of
splittag
.The text was updated successfully, but these errors were encountered: