-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
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
Caught IndexError while rendering: tuple index out of range #16
Comments
This is a simple fix. Would be great if included. I can do this, if it work with you.. |
Fix commited and pull request sent :-) |
Can you confirm if this is solved in the master repo? https://github.com/django-debug-toolbar/django-debug-toolbar (I need to update my repo so people are aware that its no longer the current version) |
I still experienced the behavior described in ticket and still had to apply fix by Timal on today's django-debug-toolbar/django-debug-toolbar. |
On Windows, splitting a path with '/' does not work well ;-)
The exception is located at debug_toolbar/panels/sql.py in content, line 195
Bug fixed by importing os, and replacing '/' by os.path.sep
The text was updated successfully, but these errors were encountered: