Commit a895dc1f authored by Cody Zacharias's avatar Cody Zacharias Committed by GitHub

Update output.py

parent 58f584ed
...@@ -134,6 +134,7 @@ def getTweet(tw, location, config): ...@@ -134,6 +134,7 @@ def getTweet(tw, location, config):
t.id = tw.find("div")["data-item-id"] t.id = tw.find("div")["data-item-id"]
t.date = getDate(tw) t.date = getDate(tw)
t.datestamp = t.date.strftime("%Y-%m-%d") t.datestamp = t.date.strftime("%Y-%m-%d")
if config.Since and config.Until:
datecheck(t.datestamp, config) datecheck(t.datestamp, config)
t.time = getTime(tw) t.time = getTime(tw)
t.timestamp = t.time.strftime("%H:%M:%S") t.timestamp = t.time.strftime("%H:%M:%S")
......
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