Merge pull request #8782 from bridadan/fix_test_traceback

Fix traceback when running mbed test
pull/8803/head
Martin Kojtal 2018-11-19 13:12:34 +00:00 committed by GitHub
commit 8dc54f1f76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -778,7 +778,7 @@ class Config(object):
@property
def report(self):
return {'app_config': self.app_config_location,
'library_configs': map(relpath, self.processed_configs.keys())}
'library_configs': list(map(relpath, self.processed_configs.keys()))}
def _generate_linker_overrides(self, rom_start, rom_size):
if self.target.mbed_app_start is not None: