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
the regexp that pulls variable out of config files does not work if there are windows paths, thus preventing proper use of todo.py on windows
strip_re = re.compile('\w+\s([A-Za-z_$="./01]+).*')
as you can see that match group is missing the \ and : characters so windows paths get reduced to the drive letter when they are pulled out.
\
:
a fixed line looks like
strip_re = re.compile('\w+\s([A-Za-z_$="./01\\\\:]+).*')
this fix let todo.py work properly for me.
The text was updated successfully, but these errors were encountered:
Care to send a PR? I'll happily merge that
Sorry, something went wrong.
No branches or pull requests
the regexp that pulls variable out of config files does not work if there are windows paths, thus preventing proper use of todo.py on windows
as you can see that match group is missing the
\
and:
characters so windows paths get reduced to the drive letter when they are pulled out.a fixed line looks like
this fix let todo.py work properly for me.
The text was updated successfully, but these errors were encountered: