You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@attic.apache.org by se...@apache.org on 2021/03/11 13:26:13 UTC

svn commit: r1887478 - /attic/site/retire.py

Author: sebb
Date: Thu Mar 11 13:26:13 2021
New Revision: 1887478

URL: http://svn.apache.org/viewvc?rev=1887478&view=rev
Log:
Allow for missing description

Modified:
    attic/site/retire.py

Modified: attic/site/retire.py
URL: http://svn.apache.org/viewvc/attic/site/retire.py?rev=1887478&r1=1887477&r2=1887478&view=diff
==============================================================================
--- attic/site/retire.py (original)
+++ attic/site/retire.py Thu Mar 11 13:26:13 2021
@@ -116,7 +116,7 @@ def create_project(pid):
         Month_Year = meta['retired'],
         mail_names = ",".join(sorted(mnames)),
         jira_names = ",".join(sorted(jiras)),
-        description = meta['description'])
+        description = meta.get('description', 'TBA'))
     with open(outfile, 'w') as o:
         o.write(out)
     os.system("svn add %s" % outfile)