diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-24 16:45:09 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-24 16:45:09 -0800 |
commit | 105fb88c4b32dd7428a4aa2c7a63607256d749ae (patch) | |
tree | e02da1c40021d4f469275c369857fe68491a2a50 /python/fatcat_tools/importers/matched.py | |
parent | cc2aecf897eb80211fae5b57a07d2f98890dee78 (diff) | |
download | fatcat-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.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 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 |