We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3594f08 commit b263998Copy full SHA for b263998
1 file changed
redesign/importing/import-liaison.py
@@ -87,7 +87,7 @@ def get_body(name, raw_code):
87
elif t[0] == "wg":
88
b = lookup_group(acronym=Acronym.objects.get(pk=t[1]).acronym, type="wg")
89
elif t[0] == "sdo":
90
- b = lookup_group(name=SDOs.objects.get(pk=t[1]).name, type="sdo")
+ b = lookup_group(name=SDOs.objects.get(pk=t[1]).sdo_name, type="sdo")
91
92
if not b:
93
b = lookup_group(acronym=raw_code)
@@ -173,6 +173,8 @@ def lookup_group(**kwargs):
173
174
l.submitted = o.submitted_date
175
l.modified = o.last_modified_date
176
+ if not l.modified and l.submitted:
177
+ l.modified = l.submitted
178
if not o.approval:
179
# no approval object means it's approved alright - weird, we
180
# have to fake the approved date then
0 commit comments