summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEevee (Alex Munroe) <eevee.git@veekun.com>2013-07-26 13:33:27 -0700
committerEevee (Alex Munroe) <eevee.git@veekun.com>2013-07-26 13:33:27 -0700
commita58a47d449080514168efdca1dd55e7f190c3623 (patch)
tree88a17f80e4f39b60411294d9b2d56a979d5cffc5
parent23e3944634e3061751c3bd1789a7c4f570727571 (diff)
downloadpyscss-a58a47d449080514168efdca1dd55e7f190c3623.tar.gz
Kill off unicode literals, until the lib actually does unicode.
-rw-r--r--scss/rule.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/rule.py b/scss/rule.py
index 2cce81c..ffd3b83 100644
--- a/scss/rule.py
+++ b/scss/rule.py
@@ -226,10 +226,10 @@ class BlockHeader(object):
return BlockAtRuleHeader(directive, argument)
else:
- if prop.endswith(u':') or u': ' in prop:
+ if prop.endswith(':') or ': ' in prop:
# Syntax is "<scope>: [prop]" -- if the optional prop exists,
# it becomes the first rule with no suffix
- scope, unscoped_value = prop.split(u':', 1)
+ scope, unscoped_value = prop.split(':', 1)
scope = scope.rstrip()
unscoped_value = unscoped_value.lstrip()
return BlockScopeHeader(scope, unscoped_value)