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 2018/08/13 17:24:58 UTC

svn commit: r1837970 - /comdev/reporter.apache.org/trunk/scripts/scandist_test.py

Author: sebb
Date: Mon Aug 13 17:24:58 2018
New Revision: 1837970

URL: http://svn.apache.org/viewvc?rev=1837970&view=rev
Log:
Add separators

Modified:
    comdev/reporter.apache.org/trunk/scripts/scandist_test.py

Modified: comdev/reporter.apache.org/trunk/scripts/scandist_test.py
URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/scripts/scandist_test.py?rev=1837970&r1=1837969&r2=1837970&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/scripts/scandist_test.py (original)
+++ comdev/reporter.apache.org/trunk/scripts/scandist_test.py Mon Aug 13 17:24:58 2018
@@ -20,12 +20,12 @@ import datetime
 def processBatch():
     for project in scandist.targets:
         # show what is to be processed
-        print("Batch: <<",project, end="")
+        print("Batch: <<",project, end="~")
         committers = scandist.targets[project]
         for committer in committers:
-            print(committer, end="")
+            print(committer, end="~")
             for entry in committers[committer]:
-                print(entry['id'], end="")
+                print(entry['id'], end="~")
         print(">>")
     scandist.processTargets()