Rename :theforce into :force

master
pictuga 2020-05-13 11:49:15 +02:00
parent 22005065e8
commit 038f267ea2
2 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@ The arguments are:
- `noref`: drop items' link - `noref`: drop items' link
- `cache`: only take articles from the cache (ie. don't grab new articles' content), so as to save time - `cache`: only take articles from the cache (ie. don't grab new articles' content), so as to save time
- `debug`: to have some feedback from the script execution. Useful for debugging - `debug`: to have some feedback from the script execution. Useful for debugging
- `theforce`: force download the rss feed and ignore cached http errros - `force`: force refetch the rss feed and articles
- `silent`: don't output the final RSS (useless on its own, but can be nice when debugging) - `silent`: don't output the final RSS (useless on its own, but can be nice when debugging)
- http server only - http server only
- `callback=NAME`: for JSONP calls - `callback=NAME`: for JSONP calls

View File

@ -306,7 +306,7 @@ def FeedFetch(url, options):
# fetch feed # fetch feed
delay = DELAY delay = DELAY
if options.theforce: if options.force:
delay = 0 delay = 0
try: try: