Skip to content

Commit

Permalink
Fix EvilInc (fixes #317)
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiX committed May 14, 2024
1 parent 6e138a0 commit 76d5180
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions dosagelib/plugins/e.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,10 @@ class EvilDiva(WordPressScraper):
endOfLife = True


class EvilInc(_ParserScraper):
class EvilInc(ParserScraper):
url = 'https://www.evil-inc.com/'
imageSearch = '//div[@id="unspliced-comic"]/img/@data-src'
imageSearch = ('//div[@id="unspliced-comic"]/img',
'//div[@id="unspliced-comic"]/picture//img')
prevSearch = '//a[./i[d:class("fa-chevron-left")]]'
firstStripUrl = url + 'comic/monday-3/'

Expand Down

0 comments on commit 76d5180

Please sign in to comment.