summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-08-26 00:39:17 +0200
committerCarl Hetherington <cth@carlh.net>2020-08-26 00:39:17 +0200
commit3680fe0cf714f1bf47b5b6d348813ebb1cdd50f2 (patch)
tree24453c6fd3509da29d03b27040092464cd969c44 /src
parentb120dfb4818ba797a33a88792f45ea6adbb331a3 (diff)
Fix error string.
Diffstat (limited to 'src')
-rw-r--r--src/lib/subtitle_analysis.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/subtitle_analysis.cc b/src/lib/subtitle_analysis.cc
index e6e8f310f..28eedac0d 100644
--- a/src/lib/subtitle_analysis.cc
+++ b/src/lib/subtitle_analysis.cc
@@ -42,7 +42,7 @@ SubtitleAnalysis::SubtitleAnalysis (boost::filesystem::path path)
if (f.optional_number_child<int>("Version").get_value_or(1) < _current_state_version) {
/* Too old. Throw an exception so that this analysis is re-run. */
- throw OldFormatError ("Audio analysis file is too old");
+ throw OldFormatError ("Subtitle analysis file is too old");
}
cxml::NodePtr bounding_box = f.optional_node_child("BoundingBox");