Revision: 2373
Author: KariHusa
Date: Fri Oct 23 04:19:36 2009
Log: ignore new 'AllLabels' column
http://code.google.com/p/robotframework/source/detail?r=2373

Modified:
 /wiki/tools/get_issues.py

=======================================
--- /wiki/tools/get_issues.py   Mon Apr 20 05:40:03 2009
+++ /wiki/tools/get_issues.py   Fri Oct 23 04:19:36 2009
@@ -48,12 +48,13 @@
         project = 'robotframework'
     else:
         project = 'robotframework-%s' % name.lower().replace(' ', '')
-    print '\n== %s %s ==\n' % (name, version)
+    print '\n= %s %s =\n' % (name, version)
     reader = csv.reader(urlopen(URL.substitute(locals())))
     total_issues = 0
     for row in reader:
         if not row or row[1] == 'Task':
             continue
+        row = row[:4]
         if reader.line_num == 1:
             row = [ '*%s*' % cell for cell in row ]
         else:

Reply via email to