aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Cramer2011-04-22 13:08:44 -0700
committerDavid Cramer2011-04-22 13:08:44 -0700
commit5fc8d35d17b691727c08e9c2b55aa655f516850f (patch)
tree07b3bece378651b9af746c40056e08e272d23e6f
parent38019ea2f5222ac97a7c5b67074a8a3b2ecf1ba0 (diff)
downloaddjango-debug-toolbar-5fc8d35d17b691727c08e9c2b55aa655f516850f.tar.bz2
Remove print statement
-rw-r--r--debug_toolbar/panels/profiling.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/debug_toolbar/panels/profiling.py b/debug_toolbar/panels/profiling.py
index 465a0a3..97f4865 100644
--- a/debug_toolbar/panels/profiling.py
+++ b/debug_toolbar/panels/profiling.py
@@ -41,7 +41,6 @@ class FunctionCall(object):
return self.parent_classes
def background(self):
- print self.hsv
r,g,b = hsv_to_rgb(*self.hsv)
return 'rgb(%f%%,%f%%,%f%%)' %(r*100, g*100, b*100)