minor change in exception handling while testing issue on macOS

This commit is contained in:
Paul Davis
2026-01-06 10:13:17 -07:00
parent f3e581be0d
commit ee4d673da1

View File

@@ -687,7 +687,8 @@ ARDOUR::matching_unsuffixed_filename_exists_in (const string& dir, const string&
}
}
} catch (const Glib::Error& e) {
error << string_compose (_("cannot open directory %1 (%2)"), dir, e.what()) << endl;
// error << string_compose (_("cannot open directory %1 (%2)"), dir, e.what()) << endl;
error << string_compose (_("cannot open directory %1 (some exception)"), dir) << endl;
return false;
}