summaryrefslogtreecommitdiffstats
path: root/python/fatcat_export.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/fatcat_export.py')
-rwxr-xr-xpython/fatcat_export.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_export.py b/python/fatcat_export.py
index 921b75ed..cf8bf1c3 100755
--- a/python/fatcat_export.py
+++ b/python/fatcat_export.py
@@ -21,7 +21,7 @@ def run_export_releases(args):
api = args.api
for line in args.ident_file:
ident = uuid2fcid(line.split()[0])
- release = api.get_release(id=ident, expand="all")
+ release = api.get_release(ident=ident, expand="all")
args.json_output.write(
json.dumps(entity_to_dict(release)) + "\n")