Fix the --continue option.
This commit is contained in:
parent
da957ce329
commit
aa2f9ae9d8
2 changed files with 5 additions and 1 deletions
|
@ -3,6 +3,10 @@ Dosage 2.4 (released xx.xx.2013)
|
|||
Features:
|
||||
- comics: Added LinuxComFridayFunnies and OnTheFasttrack.
|
||||
|
||||
Fixes:
|
||||
- cmdline: The --continue option fetched only one image.
|
||||
Closes: GH bug #32
|
||||
|
||||
|
||||
Dosage 2.3 (released 26.5.2013)
|
||||
|
||||
|
|
2
dosage
2
dosage
|
@ -236,7 +236,7 @@ def vote(scraperobj):
|
|||
def getStrips(scraperobj, options):
|
||||
"""Get all strips from a scraper."""
|
||||
errors = 0
|
||||
if options.all:
|
||||
if options.all or options.cont:
|
||||
numstrips = None
|
||||
elif options.numstrips:
|
||||
numstrips = options.numstrips
|
||||
|
|
Loading…
Reference in a new issue