[meta-freescale] [Documentation][PATCH 2/3] scripts: remove commented code

Lucas Dutra Nunes ldnunes at ossystems.com.br
Tue Mar 1 08:38:31 PST 2016


Signed-off-by: Lucas Dutra Nunes <ldnunes at ossystems.com.br>
---
 scripts/test-sheet-parser.py | 16 ----------------
 1 file changed, 16 deletions(-)

diff --git a/scripts/test-sheet-parser.py b/scripts/test-sheet-parser.py
index 71f8ba7..17dded3 100755
--- a/scripts/test-sheet-parser.py
+++ b/scripts/test-sheet-parser.py
@@ -131,10 +131,6 @@ def process_test_sheet(test_sheet, repos_dir):
     board_index = fields.index('board')
     supported_boards = get_supported_boards(repos_dir)
 
-
-    # for row in test_sheet:
-    #     print row
-
     for response in responses:
         board = response[board_index]
         if board not in responses_by_board.keys():
@@ -163,23 +159,11 @@ def process_test_sheet(test_sheet, repos_dir):
             image_str = 'image'
             was = 'was'
 
-
-
         print('This board was tested by %d %s.\n' % (len(testers), tester_str))
         print('%d %s %s used:\n' % (len(images), image_str, was))
         for image in images:
             print('  * ' + image)
 
-        # Omit the first 4 questions (personal + board) and empty questions
-        # for qno, question in enumerate(header):
-        #     if qno > 3 and question != '':
-        #         print(rst_item(question))
-        #         for responses in responses_by_board[board]:
-        #             resp = responses[qno]
-        #             if resp:
-        #                 print(rst_item(resp, level=1))
-        #         print('')
-
         print('\n')
 
     not_tested = set(supported_boards.keys()) - set(responses_by_board.keys())
-- 
2.1.4



More information about the meta-freescale mailing list