Skip to content

Commit

Permalink
DMED-119 - fix getUrlData self issue
Browse files Browse the repository at this point in the history
bergatco committed Sep 25, 2024

Verified

This commit was signed with the committer’s verified signature.
fanatid Kirill Fomichev
1 parent 2aa1a2a commit 34d4748
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion converter/spiders/merlin_spider.py
Original file line number Diff line number Diff line change
@@ -41,7 +41,7 @@ async def parse(self, response: scrapy.http.Response):
print("Parsing URL: " + response.url)

# Call Splash only once per page (that contains multiple XML elements).
data = await LomBase.getUrlData(response.url)
data = await self.getUrlData(response.url)
response.meta["rendered_data"] = data

# We would use .fromstring(response.text) if the response did not include the XML declaration:

0 comments on commit 34d4748

Please sign in to comment.