summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scss/types.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/scss/types.py b/scss/types.py
index a2c075f..5d26185 100644
--- a/scss/types.py
+++ b/scss/types.py
@@ -610,6 +610,8 @@ class List(Value):
if not other.is_unitless:
raise TypeError("Can only multiply %s by %s" % (self.__class__.__name__, other.__class__.__name__))
+ return List(self.value * int(other.value), use_comma=self.use_comma)
+
def render(self, compress=False):
delim = self.delimiter(compress)