Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
5acb2258
Commit
5acb2258
authored
12 years ago
by
Ned Batchelder
Browse files
Options
Downloads
Patches
Plain Diff
Print the full traceback when execution fails.
parent
839c5684
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lms/djangoapps/debug/views.py
+3
-1
3 additions, 1 deletion
lms/djangoapps/debug/views.py
with
3 additions
and
1 deletion
lms/djangoapps/debug/views.py
+
3
−
1
View file @
5acb2258
"""
Views for debugging and diagnostics
"""
import
pprint
import
traceback
from
django.http
import
Http404
from
django.contrib.auth.decorators
import
login_required
...
...
@@ -12,6 +13,7 @@ from codejail.safe_exec import safe_exec
@login_required
@ensure_csrf_cookie
def
run_python
(
request
):
"""
A page to allow testing the Python sandbox on a production server.
"""
if
not
request
.
user
.
is_staff
:
raise
Http404
c
=
{}
...
...
@@ -23,7 +25,7 @@ def run_python(request):
try
:
safe_exec
(
py_code
,
g
)
except
Exception
as
e
:
c
[
'
results
'
]
=
s
tr
(
e
)
c
[
'
results
'
]
=
tr
aceback
.
format_exc
()
else
:
c
[
'
results
'
]
=
pprint
.
pformat
(
g
)
return
render_to_response
(
"
debug/run_python_form.html
"
,
c
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment