diff --git a/bin/user/belchertown.py b/bin/user/belchertown.py
index a2033a8d..5c9d331a 100644
--- a/bin/user/belchertown.py
+++ b/bin/user/belchertown.py
@@ -508,7 +508,7 @@ def get_extension_list(self, timespan, db_lookup):
if forecast_alert_enabled == 1:
if "alerts" in data:
for alert in data['alerts']:
- alert_expires = time.strftime('%B %d, %Y %-I:%M %p', time.localtime( alert['expires'] )) # December 27, 2018, 9:00 PM
+ alert_expires = time.strftime('%B %-d, %Y, %-I:%M %p', time.localtime( alert['expires'] )) # December 27, 2018, 9:00 PM
# Final alert string
forecast_alert_text += " %s in effect until %s
" % ( alert['uri'], alert['title'], alert_expires )