fix decimal float/str error on dev

This commit is contained in:
Kevin Ngo 2012-07-26 17:10:12 -07:00
Родитель 16ae988e38
Коммит fecc14c3bf
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -224,7 +224,8 @@ def cut(revenue):
"""
Takes away Marketplace's cut from developers' revenue.
"""
return Decimal(str(round(Decimal(revenue) * Decimal(MKT_CUT), 2)))
return Decimal(str(round(Decimal(str(revenue)) *
Decimal(str(MKT_CUT)), 2)))
def handle_kwargs(q, field, kwargs, join_field=None):