diff --git a/distribution/entrypoints/generator.py b/distribution/entrypoints/generator.py index d33affb..5a278ee 100644 --- a/distribution/entrypoints/generator.py +++ b/distribution/entrypoints/generator.py @@ -17,7 +17,7 @@ def ifex_generator_run(): try: args = parser.parse_args() except dacite.UnexpectedDataError as e: - print(f"ERROR: Read error resulting from {filename}: {e}") + print(f"ERROR: Read error: {e}") ast = get_ast_from_yaml_file(args.input) diff --git a/distribution/entrypoints/generator_dbus.py b/distribution/entrypoints/generator_dbus.py index 4b7c099..02ff58a 100644 --- a/distribution/entrypoints/generator_dbus.py +++ b/distribution/entrypoints/generator_dbus.py @@ -17,7 +17,7 @@ def ifex_dbus_generator_run(): dbus_generator.main_generate(args.input) except dacite.UnexpectedDataError as e: - print(f"ERROR: Read error resulting from {filename}: {e}") + print(f"ERROR: Read error: {e}") if __name__ == "__main__": ifex_dbus_generator_run()