From 95de17cbce68aea18c2a667f10429bef6dd4e64f Mon Sep 17 00:00:00 2001 From: Igor Borges Date: Fri, 10 Nov 2017 17:23:33 -0200 Subject: [PATCH] small fix in the last example :wrench: --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index fcb4464..0498c15 100644 --- a/README.rst +++ b/README.rst @@ -65,7 +65,7 @@ To print the date, stock symbol and close price of each record in the file, you bf = bovespa.File() for rec in bf.query(stock='PETR3'): - print('<{}, {}, {}>'.format(rec.date, rec.stock_symbol, rec.price_close)) + print('<{}, {}, {}>'.format(rec.date, rec.stock_code, rec.price_close)) **Warning**: