Skip to content

Commit

Permalink
fix: Fix super() call from 0579cf2
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Jul 20, 2024
1 parent c83f50b commit 55a8eff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scrapyd/webservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def __init__(self, root):

def render(self, txrequest):
try:
obj = super().render(self, txrequest)
obj = super().render(txrequest)
except Exception as e: # noqa: BLE001
log.err()

Expand Down

0 comments on commit 55a8eff

Please sign in to comment.