summaryrefslogtreecommitdiff
path: root/src/lib/film.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-05-13 00:24:56 +0200
committerCarl Hetherington <cth@carlh.net>2025-05-13 00:24:56 +0200
commit0866fe0a549a489a140fd4670a5245ba231fc8ec (patch)
tree9526b17df53acd931a5bf73dbdcfb039632037fe /src/lib/film.cc
parent5aecb78c66b9c7f6124751af7cbe9c79be32149b (diff)
Allow hyphens as part of the "name" part of the ISDCF name.
Diffstat (limited to 'src/lib/film.cc')
-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 f26dcaed0..d0a26e44c 100644
--- a/src/lib/film.cc
+++ b/src/lib/film.cc
@@ -894,7 +894,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;