edited print statement

Print statement changed for python 3 compatibility .
This commit is contained in:
Edward Johnson 2016-12-15 14:27:50 -08:00 committed by GitHub
parent d5a6aa096c
commit bd1cc12e8d

View File

@ -52,7 +52,7 @@ def request(symbols):
def requestNews(symbol):
url = buildNewsUrl(symbol)
print "url: ", url
print("url: ", url)
req = Request(url)
resp = urlopen(req)
content = resp.read()