From 6f4764a835518dc9511f8a8f2b67ddbfb61aba38 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 4 Aug 2015 22:11:10 +0100 Subject: [PATCH] Tweak word separators for ISDCF name guessing game. --- src/lib/film.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/film.cc b/src/lib/film.cc index 405d8cc9b..3e02ca4e2 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -473,7 +473,7 @@ Film::isdcf_name (bool if_created_now) const /* Split the raw name up into words */ vector words; - split (words, raw_name, is_any_of (" ")); + split (words, raw_name, is_any_of (" _-")); string fixed_name; -- 2.30.2