Fixed a problem with custom prices introduced in 4fa631a

This commit is contained in:
Raphael Michel
2016-08-29 21:24:59 +02:00
parent 5f64aecafa
commit c913e44803

View File

@@ -57,6 +57,9 @@ class CartActionMixin:
else:
voucher = None
if not key.startswith('item_') and not key.startswith('variation_'):
continue
try:
amount = int(value)
except ValueError: