ksvmuralidhar commited on
Commit
508a5c3
·
verified ·
1 Parent(s): 06e6108

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -173,7 +173,7 @@ def index():
173
  # last_update_utc = datetime.strptime(os.getenv("NEWSFETCHTIME"), '%Y-%m-%d %H:%M:%S.%f')
174
  last_update_utc = datetime.strptime(redis_client.get('NEWSFETCHTIME'), '%Y-%m-%d %H:%M:%S.%f')
175
  # last_update_utc = last_update_utc.strftime("%Y-%m-%d %H:%M:%S")
176
- last_update_mins = str(int(np.round((dt.now(dt.tz) - last_update_utc).total_seconds() / 60, 0)))
177
  result_str += f'<p class="srctxt">News aggregated from <b>{src_str}</b>.<br><br>Updated {last_update_mins} mins ago</p>'
178
 
179
  result_str += '''
 
173
  # last_update_utc = datetime.strptime(os.getenv("NEWSFETCHTIME"), '%Y-%m-%d %H:%M:%S.%f')
174
  last_update_utc = datetime.strptime(redis_client.get('NEWSFETCHTIME'), '%Y-%m-%d %H:%M:%S.%f')
175
  # last_update_utc = last_update_utc.strftime("%Y-%m-%d %H:%M:%S")
176
+ last_update_mins = str(int(np.round((datetime.now() - last_update_utc).minutes, 0)))
177
  result_str += f'<p class="srctxt">News aggregated from <b>{src_str}</b>.<br><br>Updated {last_update_mins} mins ago</p>'
178
 
179
  result_str += '''