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
When invalid paths like /foo are encountered, critic starts throwing exceptions e.g.
Traceback (most recent call last): File "critic/operation/init.py", line 328, in call try: return self.process(db, user, **value) File "critic/src/critic/operation/manipulatefilters.py", line 296, in process "count": counts[filter_path] }) KeyError: '/webdriver/'
and some others. It should instead handle such errors gracefully,or, if possible, not error at all e.g. by treating /foo/ as the same as foo/.
The text was updated successfully, but these errors were encountered:
I think this might be fixed by http://critic-review.org/7fab6a1f?review=117 (which is not on master yet.)
Sorry, something went wrong.
Looks like it works on master now. Closing.
No branches or pull requests
When invalid paths like /foo are encountered, critic starts throwing exceptions e.g.
Traceback (most recent call last):
File "critic/operation/init.py", line 328, in call
try: return self.process(db, user, **value)
File "critic/src/critic/operation/manipulatefilters.py", line 296, in process
"count": counts[filter_path] })
KeyError: '/webdriver/'
and some others. It should instead handle such errors gracefully,or, if possible, not error at all e.g. by treating /foo/ as the same as foo/.
The text was updated successfully, but these errors were encountered: