Fix UnboundLocalError on indexed retrieval. See bug #4
This commit is contained in:
parent
caa20e18dc
commit
6477e570e1
2 changed files with 3 additions and 1 deletions
|
@ -10,6 +10,8 @@ Changes:
|
||||||
- comics: CyanideAndHappiness image filename now has the strip number prefixed.
|
- comics: CyanideAndHappiness image filename now has the strip number prefixed.
|
||||||
|
|
||||||
Fixes:
|
Fixes:
|
||||||
|
- comics: Fix UnboundLocalError when using indexed retrieval.
|
||||||
|
Closes: GH bug #4
|
||||||
- scripts: Ensure the generated comic names do not exceed 100 characters so
|
- scripts: Ensure the generated comic names do not exceed 100 characters so
|
||||||
they do not cause problems with path length restrictions.
|
they do not cause problems with path length restrictions.
|
||||||
- installation: Set correct homepage url so "pip install dosage" works.
|
- installation: Set correct homepage url so "pip install dosage" works.
|
||||||
|
|
|
@ -76,7 +76,7 @@ class _BasicScraper(object):
|
||||||
if maxstrips:
|
if maxstrips:
|
||||||
msg = 'Retrieving %d strips' % maxstrips
|
msg = 'Retrieving %d strips' % maxstrips
|
||||||
elif self.indexes:
|
elif self.indexes:
|
||||||
msg += "Retrieving %d strips for indexes %s" % (len(self.indexes), self.indexes)
|
msg = "Retrieving %d strips for indexes %s" % (len(self.indexes), self.indexes)
|
||||||
else:
|
else:
|
||||||
msg = 'Retrieving all strips'
|
msg = 'Retrieving all strips'
|
||||||
if self.adult:
|
if self.adult:
|
||||||
|
|
Loading…
Reference in a new issue