aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/utils
diff options
context:
space:
mode:
authorTom Christie2014-12-15 12:01:29 +0000
committerTom Christie2014-12-15 12:01:29 +0000
commitdc66cce16da6793efe4a4a4dcdd18db62c859abb (patch)
treefc62c272611eacb8a07ebf60fd00097e86498db0 /rest_framework/utils
parent72e08a3e8b6427cb93f0f98b42724e31e5b3d8f9 (diff)
downloaddjango-rest-framework-dc66cce16da6793efe4a4a4dcdd18db62c859abb.tar.bz2
Remove erronous print
Diffstat (limited to 'rest_framework/utils')
-rw-r--r--rest_framework/utils/representation.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/rest_framework/utils/representation.py b/rest_framework/utils/representation.py
index 0d829a83..1bfc64c1 100644
--- a/rest_framework/utils/representation.py
+++ b/rest_framework/utils/representation.py
@@ -30,7 +30,6 @@ def smart_repr(value):
# Representations like u'help text'
# should simply be presented as 'help text'
- print type(value), value
if value.startswith("u'") and value.endswith("'"):
return value[1:]