summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-08-02 00:25:41 +0100
committerCarl Hetherington <cth@carlh.net>2017-08-02 00:25:41 +0100
commit320999237a1347f984fcf4d5b4c2b0314d59ac14 (patch)
tree9c5d4809c7f7deb80e61c815bdb5eaf6b2f3e879 /src/lib
parent233e167439a233942f3b1b8be19c14b74641d4b1 (diff)
Make up a DCP name rather than giving an error.
Diffstat (limited to 'src/lib')
-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 0e244c308..3b8199f30 100644
--- a/src/lib/film.cc
+++ b/src/lib/film.cc
@@ -309,7 +309,7 @@ Film::make_dcp ()
}
if (name().empty()) {
- throw MissingSettingError (_("name"));
+ _name = "DCP";
}
BOOST_FOREACH (shared_ptr<const Content> i, content ()) {