summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-08-04 22:11:10 +0100
committerCarl Hetherington <cth@carlh.net>2015-08-04 22:11:10 +0100
commit6f4764a835518dc9511f8a8f2b67ddbfb61aba38 (patch)
tree42bed87622224fad3cdd5ba090fc8c2bbc9e7fed /src
parent7340dae2c6e0ba592764b501a44f9245684a27a2 (diff)
Tweak word separators for ISDCF name guessing game.
Diffstat (limited to 'src')
-rw-r--r--src/lib/film.cc2
1 files changed, 1 insertions, 1 deletions
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<string> words;
- split (words, raw_name, is_any_of (" "));
+ split (words, raw_name, is_any_of (" _-"));
string fixed_name;