Revision: 3269 Author: janne.t.harkonen Date: Wed May 12 00:55:30 2010 Log: Do not print duplicate headers http://code.google.com/p/robotframework/source/detail?r=3269
Modified: /wiki/tools/get_issues.py ======================================= --- /wiki/tools/get_issues.py Thu May 6 07:33:37 2010 +++ /wiki/tools/get_issues.py Wed May 12 00:55:30 2010 @@ -1,13 +1,13 @@ #!/usr/bin/env python # Copyright 2008 Nokia Siemens Networks Oyj -# +# # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at -# +# # http://www.apache.org/licenses/LICENSE-2.0 -# +# # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -28,7 +28,7 @@ Exammples: $ get_issues.py RobotFramework 2.0.1 -$ get_issues.py RobotFramework 2.0.1 alpha1 +$ get_issues.py RobotFramework 2.0.1 alpha1 $ get_issues.py SwingLibrary 0.4 >> ReleaseNotes.wiki """ @@ -49,7 +49,6 @@ url = URL.substitute(locals()) reader = csv.reader(urlopen(url)) total_issues = 0 - print '|| *ID* || *Type* || *Priority* || *Summary* ||' for row in reader: if not row or row[1] == 'Task': continue
