summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEevee (Alex Munroe) <eevee.git@veekun.com>2014-09-05 15:06:08 -0700
committerEevee (Alex Munroe) <eevee.git@veekun.com>2014-09-05 15:06:08 -0700
commitb8b20dd40c1aaf669a4f585d5d2eaf6a0682ad5b (patch)
tree2d00ab4bc6ff4ac884731ae8a392f4413956dff2
parentd9c1b07f94d3d5bf6a7ed07e5254a313b6c991fc (diff)
downloadpyscss-b8b20dd40c1aaf669a4f585d5d2eaf6a0682ad5b.tar.gz
Remove debug code, oops.
-rw-r--r--scss/cssdefs.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/scss/cssdefs.py b/scss/cssdefs.py
index 64faf78..d55464b 100644
--- a/scss/cssdefs.py
+++ b/scss/cssdefs.py
@@ -449,8 +449,6 @@ def unescape(string):
"""Given a raw CSS string (i.e. taken directly from CSS source with no
processing), eliminate all backslash escapes.
"""
- print("unescaping!", repr(string))
- print("and got!", repr(unescape_rx.sub(_unescape_one, string)))
return unescape_rx.sub(_unescape_one, string)