Psycojoker / prosopopee

a static website generator to make beautiful customizable pictures galleries that tell a story
http://prosopopee.readthedocs.org
GNU General Public License v3.0
318 stars 55 forks source link

Fix autogen bugs #113

Closed gangelop closed 3 years ago

gangelop commented 3 years ago

If exif data exists but 'DateTime' is not in exif_data, the datetime that we're supposed to return never gets assigned and triggers an Error.

We first attempt to populate the exif_data and then IF it's populated we use it ELSE we use getmtime so it's always one or the other. No error here because exif_data is already initialized as {}.

resolves #112

gangelop commented 3 years ago

I've pushed one more fix for another bug in autogen which I just found. Read commit messages for details.

gangelop commented 3 years ago

resolves #114

Psycojoker commented 3 years ago

Good catch, thx!