We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d7b47b commit 3606e93Copy full SHA for 3606e93
listenbrainz/webserver/views/index.py
@@ -110,11 +110,11 @@ def current_status():
110
except Exception:
111
current_app.logger.error("Could not get %s listen count from redis", day.strftime('%Y-%m-%d'), exc_info=True)
112
day_listen_count = None
113
- listen_counts_per_day.append({
114
- "date": day.strftime('%Y-%m-%d'),
115
- "listenCount": format(day_listen_count, ',d') if day_listen_count else "0",
116
- "label": "today" if delta == 0 else "yesterday",
117
- })
+ listen_counts_per_day.append({
+ "date": day.strftime('%Y-%m-%d'),
+ "listenCount": format(day_listen_count, ',d') if day_listen_count else "0",
+ "label": "today" if delta == 0 else "yesterday",
+ })
118
119
data = {
120
"load": load,
0 commit comments