summaryrefslogtreecommitdiff
path: root/src/dcp.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-12-05 10:10:31 +0100
committerCarl Hetherington <cth@carlh.net>2019-12-06 12:32:36 +0100
commit548dc650648cead2534a6289ca048dc1ce24afd4 (patch)
tree79243ff0733e5cfceb5ab63d2f1985b1ecc14a3a /src/dcp.cc
parent7c339cb8ce9abb4838d0e10a0255ebcb38871377 (diff)
Tweak error message.
Diffstat (limited to 'src/dcp.cc')
-rw-r--r--src/dcp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dcp.cc b/src/dcp.cc
index c5ad21c4..adb33320 100644
--- a/src/dcp.cc
+++ b/src/dcp.cc
@@ -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");