summaryrefslogtreecommitdiff
path: root/django/views/debug.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/views/debug.py')
-rw-r--r--django/views/debug.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/views/debug.py b/django/views/debug.py
index 209cdce8c9..4ecd936771 100644
--- a/django/views/debug.py
+++ b/django/views/debug.py
@@ -405,7 +405,7 @@ class ExceptionReporter(object):
if pre_context_lineno is not None:
frames.append({
'tb': tb,
- 'type': module_name.startswith('django.') and 'django' or 'user',
+ 'type': 'django' if module_name.startswith('django.') else 'user',
'filename': filename,
'function': function,
'lineno': lineno + 1,