Merge commit '9b42bec08ad10'

This commit is contained in:
Jim Miller
2015-04-05 09:56:38 -05:00
+4 -1
View File
@@ -2067,7 +2067,10 @@ class FanFictionDownLoaderPlugin(InterfaceAction):
# copy list top level
for b in book_list:
if b['series']:
serieslist.append(b['series'][:b['series'].index(" [")])
try:
serieslist.append(b['series'][:b['series'].index(" [")])
except ValueError: # substring not found
serieslist.append(b['series'])
#print("book series:%s"%serieslist[-1])
if b['publisher']: