Removes spurious print statement.

This commit is contained in:
Christopher Neugebauer 2016-09-14 15:09:02 +10:00
parent b5cbc3e39e
commit 3f53d6f4ff

View file

@ -57,8 +57,6 @@ class ItemController(object):
in_cart = Q(productitem__cart__user=self.user)
in_cart = in_cart & reduce(operator.__or__, status_query)
print in_cart
quantities_in_cart = When(
in_cart,
then="productitem__quantity",