diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-06-13 23:11:20 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-06-13 23:11:20 +0100 |
| commit | 937e4352072486832372fc8ebdb83583be9b8a2a (patch) | |
| tree | 54270184cef734b58000d151f06061da7a6a5017 /src | |
| parent | 3bd7e5fb638e7e1084b20de2d4c74fad61434eb1 (diff) | |
More consistent error message in a subtitle exception.
Diffstat (limited to 'src')
| -rw-r--r-- | src/smpte_subtitle_asset.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/smpte_subtitle_asset.cc b/src/smpte_subtitle_asset.cc index c7272066..685b4fc7 100644 --- a/src/smpte_subtitle_asset.cc +++ b/src/smpte_subtitle_asset.cc @@ -99,7 +99,7 @@ SMPTESubtitleAsset::SMPTESubtitleAsset (boost::filesystem::path file) } catch (cxml::Error& e) { boost::throw_exception ( DCPReadError ( - String::compose ("could not read subtitles from %1; MXF failed with %2, XML failed with %3", file, static_cast<int> (r), e.what ()) + String::compose ("MXF failed with %1, XML failed with %2", file, static_cast<int> (r), e.what ()) ) ); } |
