diff options
| author | Aymeric Augustin | 2013-10-18 18:08:17 +0200 | 
|---|---|---|
| committer | Aymeric Augustin | 2013-10-18 18:09:15 +0200 | 
| commit | ccbf178a3351106e25422b898f09cdca60a1c6e5 (patch) | |
| tree | 442eb02929f8b2ed640a7d864242c4ee81f4b3cd /tests/urls.py | |
| parent | 7196171fadb3478b660451bed344bf13c270f9af (diff) | |
| download | django-debug-toolbar-ccbf178a3351106e25422b898f09cdca60a1c6e5.tar.bz2 | |
Fix crash with objects having a non-ASCII repr in context.
Diffstat (limited to 'tests/urls.py')
| -rw-r--r-- | tests/urls.py | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/tests/urls.py b/tests/urls.py index 2877e73..d9ecb8c 100644 --- a/tests/urls.py +++ b/tests/urls.py @@ -18,5 +18,6 @@ urlpatterns = patterns('tests.views',      url(r'^resolving2/(?P<arg1>.+)/(?P<arg2>.+)/$', 'resolving_view'),      url(r'^resolving3/(.+)/$', 'resolving_view', { 'arg2' : 'default' }),      url(r'^regular/(?P<title>.*)/$', 'regular_view'), +    url(r'^non_ascii_context/$', 'non_ascii_context'),      url(r'^execute_sql/$', 'execute_sql'),  ) | 
