ksvmuralidhar commited on
Commit
f496f2e
1 Parent(s): 7f396d0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -172,7 +172,8 @@ def index():
172
  else:
173
  last_update_utc = datetime.strptime(redis_client.get('NEWSFETCHTIME'), '%Y-%m-%d %H:%M:%S.%f')
174
  last_update_mins = str(int(np.ceil((datetime.now() - last_update_utc).seconds / 60)))
175
- result_str += f'<p class="srctxt">News aggregated from <b>{src_str}</b>.<br><br>Updated {last_update_mins} minute(s) ago</p>'
 
176
 
177
  result_str += '''
178
  <div class="input-container">
 
172
  else:
173
  last_update_utc = datetime.strptime(redis_client.get('NEWSFETCHTIME'), '%Y-%m-%d %H:%M:%S.%f')
174
  last_update_mins = str(int(np.ceil((datetime.now() - last_update_utc).seconds / 60)))
175
+ last_update_str = f'Updated {last_update_mins} {"minutes" if last_update_mins > 1 else "minute"} ago'
176
+ result_str += f'<p class="srctxt">News aggregated from <b>{src_str}</b>.<br><br>{last_update_str}</p>'
177
 
178
  result_str += '''
179
  <div class="input-container">