Skip to content

Commit

Permalink
Fix off by two hours on timezone
Browse files Browse the repository at this point in the history
  • Loading branch information
Chase Seibert committed Jun 22, 2020
1 parent 562305e commit 2ffffed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -6,5 +6,5 @@ Scrape webpages to make an RSS feed using just regex
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
./webpage-regex-to-rss.py ./webpage-regex-to-rss.py bogleheads2 --s3
./webpage-regex-to-rss.py bogleheads2 --s3
```
2 changes: 1 addition & 1 deletion settings.py
Expand Up @@ -17,7 +17,7 @@
},
# exclude anything that doesn't have 50 or more replies
'exclude': lambda d: int(d.get('replies') or 0) < 50,
'timezone': 'Etc/GMT-7', # footer says "All times are UTC-07:00"
'timezone': 'Etc/GMT-5', # footer says "All times are UTC-05:00"
's3': {
'bucket': 'rsscombine',
'object_name': 'bogleheads2.xml',
Expand Down

0 comments on commit 2ffffed

Please sign in to comment.