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
In [14]: try: ...: pathvalidate.validate_filepath('asdf\rsdf') ...: except Exception as e: ...: print(e) ...: ...: sdf', reason=INVALID_CHARACTERars=(\
The text was updated successfully, but these errors were encountered:
Fix to properly escape special chars for error messages: #9
5281dc4
Thank you for your report.
The error fixed at pathvalidate 0.28.2 as the following:
pathvalidate 0.28.2
>>> pathvalidate.__version__ '0.28.2' >>> try: ... pathvalidate.validate_filepath('asdf\rsdf') ... except Exception as e: ... print(e) ... invalid char found: invalid-chars=('\r'), value=''asdf\rsdf'', reason=INVALID_CHARACTER
Please try to upgrade the package.
Sorry, something went wrong.
Thanks for instant fix! repr for greater good.
thombashi
No branches or pull requests
The text was updated successfully, but these errors were encountered: