summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEevee (Alex Munroe) <eevee.git@veekun.com>2013-08-23 19:59:30 -0700
committerEevee (Alex Munroe) <eevee.git@veekun.com>2013-08-23 19:59:30 -0700
commita3eef3ec84543e17849a522daedacdf29cc4f1d7 (patch)
treeecb923237658825477ed8fdc4be5202b651c5708
parent99d826ea01739a83e55478fb00da8275d75df986 (diff)
downloadpyscss-a3eef3ec84543e17849a522daedacdf29cc4f1d7.tar.gz
Quick py3 fix for gradients.
-rw-r--r--scss/functions/compass/gradients.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/functions/compass/gradients.py b/scss/functions/compass/gradients.py
index 6387dec..4a96be0 100644
--- a/scss/functions/compass/gradients.py
+++ b/scss/functions/compass/gradients.py
@@ -91,7 +91,7 @@ def __color_stops(percentages, *args):
else:
stops = [s if s.is_simple_unit('%') else s * max_stops for s in stops]
- return zip(stops, colors)
+ return list(zip(stops, colors))
def _render_standard_color_stops(color_stops):