diff options
| -rw-r--r-- | python/fatcat_tools/importers/matched.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/python/fatcat_tools/importers/matched.py b/python/fatcat_tools/importers/matched.py index 423c3ef3..df6ba108 100644 --- a/python/fatcat_tools/importers/matched.py +++ b/python/fatcat_tools/importers/matched.py @@ -81,7 +81,7 @@ class MatchedImporter(EntityImporter):              url = make_rel_url(original, default_link_rel=self.default_link_rel)              if url != None:                  urls.add(url) -        urls = [fatcat_client.FileEntityUrls(rel, url) for (rel, url) in urls] +        urls = [fatcat_client.FileEntityUrls(rel=rel, url=url) for (rel, url) in urls]          if len(urls) == 0:              return None | 
