In all_id2.txt, set the WG field as empty for AD-sponsored documents which have group set to an area. Fixes a problem with draft alias generation.
- Legacy-Id: 4066
This commit is contained in:
parent
794bbad413
commit
0e8ab0dbfd
|
@ -89,7 +89,7 @@ def all_id2_entry(id):
|
||||||
# 6
|
# 6
|
||||||
fields.append(id.revision_date)
|
fields.append(id.revision_date)
|
||||||
# 7
|
# 7
|
||||||
group_acronym = id.group.acronym
|
group_acronym = "" if id.group.type_id == "area" else id.group.acronym
|
||||||
if group_acronym == "none":
|
if group_acronym == "none":
|
||||||
group_acronym = ""
|
group_acronym = ""
|
||||||
fields.append(group_acronym)
|
fields.append(group_acronym)
|
||||||
|
|
Loading…
Reference in a new issue