We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0f4185 commit ccfd8b5Copy full SHA for ccfd8b5
1 file changed
ietf/submit/utils.py
@@ -47,8 +47,10 @@ def perform_post(submission):
47
draft.txt_page_count = submission.txt_page_count
48
draft.last_modified_date = datetime.date.today()
49
draft.abstract = submission.abstract
50
+ draft.status_id=1 # Active
51
+ draft.expired_tombstone=0
52
draft.save()
- if draft.idinternal.cur_sub_state_id == 5 and draft.idinternal.rfc_flag == 0: # Substate 5 Revised ID Needed
53
+ if draft.idinternal and draft.idinternal.cur_sub_state_id == 5 and draft.idinternal.rfc_flag == 0: # Substate 5 Revised ID Needed
54
draft.idinternal.prev_sub_state_id = draft.idinternal.cur_sub_state_id
55
draft.idinternal.cur_sub_state_id = 2 # Substate 2 AD Followup
56
draft.idinternal.save()
0 commit comments