aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2020-07-31 00:52:21 -0700
committerBryan Newbold <bnewbold@robocracy.org>2020-07-31 12:13:06 -0700
commit701062f94d2cebede755d4f2c43e516b698341b1 (patch)
treeb347912948527303c910024f351f01b926e72871 /python/fatcat_web
parentb7aed96075187af72b510c55e762d1e13c0a5306 (diff)
downloadfatcat-701062f94d2cebede755d4f2c43e516b698341b1.tar.gz
fatcat-701062f94d2cebede755d4f2c43e516b698341b1.zip
fix typo bug resulting in lost/bad ext_id web edits
Diffstat (limited to 'python/fatcat_web')
-rw-r--r--python/fatcat_web/forms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/fatcat_web/forms.py b/python/fatcat_web/forms.py
index 13776d10..1bd932bb 100644
--- a/python/fatcat_web/forms.py
+++ b/python/fatcat_web/forms.py
@@ -152,11 +152,11 @@ class ReleaseEntityForm(EntityEditForm):
a = None
setattr(re, simple_attr, a)
for extid_attr in RELEASE_EXTID_ATTRS:
- a = getattr(self, simple_attr).data
+ a = getattr(self, extid_attr).data
# special case blank strings
if a == '':
a = None
- setattr(re.ext_ids, simple_attr, a)
+ setattr(re.ext_ids, extid_attr, a)
# bunch of complexity here to preserve old contrib metadata (eg,
# affiliation and extra) not included in current forms
# TODO: this may be broken; either way needs tests