From 0792f10d395c90532e8c778eab22145e746257e6 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 17 Sep 2022 22:31:49 +0200 Subject: [PATCH] Don't dump empty error details. --- src/tools/dcpomatic_create.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/tools/dcpomatic_create.cc b/src/tools/dcpomatic_create.cc index 8ce7d90a2..345c0182b 100644 --- a/src/tools/dcpomatic_create.cc +++ b/src/tools/dcpomatic_create.cc @@ -176,8 +176,10 @@ main (int argc, char* argv[]) if (jm->errors ()) { for (auto i: jm->get()) { if (i->finished_in_error()) { - cerr << i->error_summary() << "\n" - << i->error_details() << "\n"; + cerr << i->error_summary() << "\n"; + if (!i->error_details().empty()) { + cout << i->error_details() << "\n"; + } } } exit (EXIT_FAILURE); -- 2.30.2