diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-12-05 10:10:31 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-12-22 01:21:00 +0100 |
| commit | c83a8bc7e967597aaceab3e2a94e5f158e1dbcd5 (patch) | |
| tree | 79243ff0733e5cfceb5ab63d2f1985b1ecc14a3a /src/dcp.cc | |
| parent | b03ef1123987e423369552b04ebeb11249527627 (diff) | |
Tweak error message.
Diffstat (limited to 'src/dcp.cc')
| -rw-r--r-- | src/dcp.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -119,7 +119,7 @@ DCP::read (bool keep_going, ReadErrors* errors, bool ignore_incorrect_picture_mx } else if (boost::filesystem::exists (_directory / "ASSETMAP.xml")) { asset_map_file = _directory / "ASSETMAP.xml"; } else { - boost::throw_exception (DCPReadError (String::compose ("could not find AssetMap file in `%1'", _directory.string()))); + boost::throw_exception (DCPReadError (String::compose ("could not find ASSETMAP nor ASSETMAP.xml in `%1'", _directory.string()))); } cxml::Document asset_map ("AssetMap"); |
