Skip to content

Commit

Permalink
Modified super invocation for python2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
cc-a committed Dec 3, 2019
1 parent 2e1ea04 commit 1adf3f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poetry/repositories/find_links_repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class FilteredPage(Page):

def __init__(self, url, name, content, headers):
self.name = name
super().__init__(url, content, headers)
super(FilteredPage, self).__init__(url, content, headers)

def _parse_url(self, url): # type: (str) -> str
parsed_url, self.index_page, self.single_link = parse_url(url)
Expand Down

0 comments on commit 1adf3f6

Please sign in to comment.