diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-28 22:14:00 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-28 22:14:00 -0800 |
commit | 7b1ed8c0b362139d15a311ce323241c5bd598fb9 (patch) | |
tree | 7d45f18857ae8cd6a5367fdae5595236a7c8b325 /python | |
parent | a560433ad29b6831c49b48bbfbe0387dd07455ca (diff) | |
download | fatcat-7b1ed8c0b362139d15a311ce323241c5bd598fb9.tar.gz fatcat-7b1ed8c0b362139d15a311ce323241c5bd598fb9.zip |
fix rel/url order swap
Diffstat (limited to 'python')
-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 |