Commit a45a8ac7 authored by Corey Ryan Hanson's avatar Corey Ryan Hanson Committed by GitHub

The code outputting to a pandas dataframe was broken from a recent update. (#999)

* added missing space which broke geosearch

* fixed dataframe code broken from hour formatting in commit 2348211b
parent c875916c
......@@ -84,7 +84,7 @@ def update(object, config):
"username": Tweet.username,
"name": Tweet.name,
"day": day,
"hour": datetime.strptime("%H", localtime(datetime_ms/1000)),
"hour": strftime("%H", localtime(datetime_ms/1000)),
"link": Tweet.link,
"urls": Tweet.urls,
"photos": Tweet.photos,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment