Skip to content

Commit

Permalink
Work around storing user balance as floats
Browse files Browse the repository at this point in the history
  • Loading branch information
ppannuto committed Aug 28, 2015
1 parent bf53b58 commit 60cb2ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chezbetty/templates/paydebt.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<h1>Pay Debt</h1>
<hr />

{% if user.balance < 0 %}
{% if user.balance <= -0.01 %}

<h3>
{{ _('We use stripe to process credit card transactions.') }}
Expand Down

0 comments on commit 60cb2ca

Please sign in to comment.