Fix error string.
authorCarl Hetherington <cth@carlh.net>
Tue, 25 Aug 2020 22:39:17 +0000 (00:39 +0200)
committerCarl Hetherington <cth@carlh.net>
Tue, 25 Aug 2020 22:39:17 +0000 (00:39 +0200)
src/lib/subtitle_analysis.cc

index e6e8f310f4993ab375df09f6e5494dac5264f400..28eedac0d84d7fba2a780a20e69f282bf292dd8c 100644 (file)
@@ -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");