Print macros in a readable way

pull/6697/head
Jimmy Brisson 2018-04-09 09:26:11 -05:00 committed by adbridge
parent 74469ef9e2
commit b9c1fe41d9
1 changed files with 2 additions and 3 deletions

View File

@ -73,9 +73,8 @@ if __name__ == '__main__':
print("Macros")
print("------")
if macros:
print('Defined with "macros":', Config.config_macros_to_macros(macros))
print("Generated from configuration parameters:", Config.parameters_to_macros(params))
for m in Config.config_macros_to_macros(macros):
print(m)
except KeyboardInterrupt as e:
print("\n[CTRL+c] exit")