Fix date format in DCP names.
authorCarl Hetherington <cth@carlh.net>
Tue, 16 Oct 2012 12:16:23 +0000 (13:16 +0100)
committerCarl Hetherington <cth@carlh.net>
Tue, 16 Oct 2012 12:16:23 +0000 (13:16 +0100)
src/lib/film_state.cc

index 094342d7b96471fcbdf58dc8094fcea999db7f39..6f1c47fea11cb40a117551b770d05b03276e00c2 100644 (file)
@@ -417,7 +417,7 @@ FilmState::dci_name () const
        }
 
        gregorian::date today = gregorian::day_clock::local_day ();
-       d << gregorian::to_iso_extended_string (today) << "_";
+       d << gregorian::to_iso_string (today) << "_";
 
        if (!facility.empty ()) {
                d << facility << "_";