aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_tools/importers/matched.py
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-01-24 16:45:09 -0800
committerBryan Newbold <bnewbold@robocracy.org>2019-01-24 16:45:09 -0800
commit105fb88c4b32dd7428a4aa2c7a63607256d749ae (patch)
treee02da1c40021d4f469275c369857fe68491a2a50 /python/fatcat_tools/importers/matched.py
parentcc2aecf897eb80211fae5b57a07d2f98890dee78 (diff)
downloadfatcat-105fb88c4b32dd7428a4aa2c7a63607256d749ae.tar.gz
fatcat-105fb88c4b32dd7428a4aa2c7a63607256d749ae.zip
refactor _get_editgroup => get_editgroup_id
Diffstat (limited to 'python/fatcat_tools/importers/matched.py')
-rw-r--r--python/fatcat_tools/importers/matched.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_tools/importers/matched.py b/python/fatcat_tools/importers/matched.py
index aca2cc34..423c3ef3 100644
--- a/python/fatcat_tools/importers/matched.py
+++ b/python/fatcat_tools/importers/matched.py
@@ -126,7 +126,7 @@ class MatchedImporter(EntityImporter):
existing.size = existing.size or fe.size
existing.md5 = existing.md5 or fe.md5
existing.sha256 = existing.sha256 or fe.sha256
- self.api.update_file(existing.ident, existing, editgroup_id=self._get_editgroup())
+ self.api.update_file(existing.ident, existing, editgroup_id=self.get_editgroup_id())
self.counts['update'] += 1
return False