Index: scripts/MsgUtils/GenerateMsgIni.py =================================================================== diff -u -r8165b9eb5d23253e5d38b6ffde9d1a21cb1cbc52 -r9d547159d805f3a0b0f2f6a11f4e34feb5117b65 --- scripts/MsgUtils/GenerateMsgIni.py (.../GenerateMsgIni.py) (revision 8165b9eb5d23253e5d38b6ffde9d1a21cb1cbc52) +++ scripts/MsgUtils/GenerateMsgIni.py (.../GenerateMsgIni.py) (revision 9d547159d805f3a0b0f2f6a11f4e34feb5117b65) @@ -21,9 +21,10 @@ try: for conf in args.conf: msg_ini.loadConf(conf, clear=False) + msg_ini.loadIni(args.output) output_dir = os.path.dirname(os.path.abspath(args.output)) os.makedirs(output_dir, exist_ok=True) - msg_ini.merge_ini(args.output) + msg_ini.write_ini(args.output) except Exception as e: print('Error: %s' % e) sys.exit(1)