diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-08-02 00:25:41 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-08-02 00:25:41 +0100 |
| commit | 320999237a1347f984fcf4d5b4c2b0314d59ac14 (patch) | |
| tree | 9c5d4809c7f7deb80e61c815bdb5eaf6b2f3e879 /src | |
| parent | 233e167439a233942f3b1b8be19c14b74641d4b1 (diff) | |
Make up a DCP name rather than giving an error.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/film.cc | 2 |
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 ()) { |
