You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@community.apache.org by se...@apache.org on 2019/09/26 13:42:27 UTC

svn commit: r1867574 - /comdev/projects.apache.org/trunk/scripts/cronjobs/parseprojects.py

Author: sebb
Date: Thu Sep 26 13:42:27 2019
New Revision: 1867574

URL: http://svn.apache.org/viewvc?rev=1867574&view=rev
Log:
HACK: Try to fix random differences in list fields

Modified:
    comdev/projects.apache.org/trunk/scripts/cronjobs/parseprojects.py

Modified: comdev/projects.apache.org/trunk/scripts/cronjobs/parseprojects.py
URL: http://svn.apache.org/viewvc/comdev/projects.apache.org/trunk/scripts/cronjobs/parseprojects.py?rev=1867574&r1=1867573&r2=1867574&view=diff
==============================================================================
--- comdev/projects.apache.org/trunk/scripts/cronjobs/parseprojects.py (original)
+++ comdev/projects.apache.org/trunk/scripts/cronjobs/parseprojects.py Thu Sep 26 13:42:27 2019
@@ -180,7 +180,7 @@ for s in itemlist :
                 # Deal with multiple entry tags first
                 if k in ['release', 'implements', 'repository', 'developer', 'maintainer', 'member', 'helper']:
                     pjson[k] = []
-                    for xk in v:
+                    for xk in sorted(v):
                         pjson[k].append(v[xk])
                 else:
                     pjson[k] = v