diff --git a/brewman/views/product.py b/brewman/views/product.py index 10073000..7217e1e3 100644 --- a/brewman/views/product.py +++ b/brewman/views/product.py @@ -182,7 +182,7 @@ def show_term(request): if extended: product = {'ProductID': item.id, 'Name': item.full_name, 'Price': item.price, 'Units': item.units, 'Fraction': item.fraction, 'FractionUnits': item.fraction_units, - 'ProductYield': item.product_yield, 'IsSold' item.is_sold, 'SalePrice': item.sale_price} + 'ProductYield': item.product_yield, 'IsSold': item.is_sold, 'SalePrice': item.sale_price} else: product = {'ProductID': item.id, 'Name': item.full_name, 'Price': item.price} local_results.append(product)