diff options
| author | jschneier <josh.schneier@gmail.com> | 2014-04-13 01:28:37 -0400 |
|---|---|---|
| committer | jschneier <josh.schneier@gmail.com> | 2014-04-13 01:28:37 -0400 |
| commit | 9526e16a9b08283d6e4cb2fb59d64fd5149e0153 (patch) | |
| tree | b0e98b8588116e74a5a3140f57cf1ce8f433e140 | |
| parent | fe208a1f776a5120b53dd5804e534d9b4f366e9e (diff) | |
| download | pyscss-9526e16a9b08283d6e4cb2fb59d64fd5149e0153.tar.gz | |
fix crash from TypeError in compass support
| -rw-r--r-- | scss/functions/compass/helpers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/functions/compass/helpers.py b/scss/functions/compass/helpers.py index 099b10d..2cbb94b 100644 --- a/scss/functions/compass/helpers.py +++ b/scss/functions/compass/helpers.py @@ -270,7 +270,7 @@ def elements_of_type(display): ret = _elements_of_type.get(d.value, None) if ret is None: raise Exception("Elements of type '%s' not found!" % d.value) - return List(ret, use_comma=True) + return List(map(String, ret), use_comma=True) @register('enumerate', 3) |
