Index: trunk/tools/editor_trends/manage.py |
— | — | @@ -157,7 +157,7 @@ |
158 | 158 | |
159 | 159 | |
160 | 160 | parser.add_argument('-k', '--kaggle', |
161 | | - action='store', |
| 161 | + action='store_true', |
162 | 162 | help='Indicate whether the output is for Kaggle or not', |
163 | 163 | default=False) |
164 | 164 | |
Index: trunk/tools/editor_trends/classes/runtime_settings.py |
— | — | @@ -166,7 +166,7 @@ |
167 | 167 | print '''This software comes with ABSOLUTELY NO WARRANTY. This is free |
168 | 168 | software, and you are welcome to distribute it under certain conditions.''' |
169 | 169 | print 'See the README.1ST file for more information.' |
170 | | - print '\nPlatform: %s' % self.platform |
| 170 | + print '\nPlatform: %s:%s' % (self.platform, self.architecture) |
171 | 171 | |
172 | 172 | print 'Final settings after parsing command line arguments:' |
173 | 173 | for ab in about: |