summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEevee <eevee.git@veekun.com>2013-06-19 11:51:05 -0700
committerEevee <eevee.git@veekun.com>2013-06-19 11:51:23 -0700
commit2879bb291be3d1509bd3f9f7fbd74be2f6e7f7b9 (patch)
tree3c5d6437ee65271365c53a4bc89e5f57713e3aac
parentf9fe1138761e76f302fa6062f1e2a2f422233e7c (diff)
downloadpyscss-1.1.x.tar.gz
Make functions with underscores in their names usable again. #1621.1.x
-rw-r--r--scss/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/__init__.py b/scss/__init__.py
index be613f2..433714a 100644
--- a/scss/__init__.py
+++ b/scss/__init__.py
@@ -1128,7 +1128,7 @@ class Scss(object):
return
funct, params, _ = name.partition('(')
- funct = funct.strip()
+ funct = funct.strip().replace('_', '-')
params = split_params(depar(params + _))
defaults = {}
new_params = []