Skip to content

Commit bf3b1f7

Browse files
committed
Added 'consent' to the fields handled when merging person records.
- Legacy-Id: 15488
1 parent 29ae780 commit bf3b1f7

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/person/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def merge_persons(source, target, file=sys.stdout, verbose=False):
3434
dedupe_aliases(target)
3535

3636
# copy other attributes
37-
for field in ('ascii','ascii_short', 'biography', 'photo', 'photo_thumb', 'name_from_draft'):
37+
for field in ('ascii','ascii_short', 'biography', 'photo', 'photo_thumb', 'name_from_draft', 'consent'):
3838
if getattr(source,field) and not getattr(target,field):
3939
setattr(target,field,getattr(source,field))
4040
target.save()

release-coverage.json.gz

37 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)