From 33c385ea910f6bccb2e0e16c00d4d96cb9fe7633 Mon Sep 17 00:00:00 2001 From: tanshu Date: Tue, 22 Mar 2016 13:23:27 +0530 Subject: [PATCH] Fix: Typo --- brewman/views/product.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)