summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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):