diff --git a/beem/cli.py b/beem/cli.py
index 10360164bac9de09d2f8f2cbdc5fab0fb888f4e2..201465884fbaad43cf6cbbd930777d7f9680d476 100644
--- a/beem/cli.py
+++ b/beem/cli.py
@@ -1786,7 +1786,7 @@ def pricehistory(width, height, ascii):
     for h in price_history:
         base = Amount(h["base"], steem_instance=stm)
         quote = Amount(h["quote"], steem_instance=stm)
-        price.append(base.amount / quote.amount)
+        price.append(float(base.amount / quote.amount))
     if ascii:
         charset = u'ascii'
     else: