1
0
Fork 0

Speed up a bit the processing of get_meta for images with a "regular" name

This commit is contained in:
jvoisin 2018-06-08 23:30:12 +02:00
parent e86e8e3c23
commit aa42b905d5
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ class __ImageParser(abstract.AbstractParser):
of this.
"""
fun = lambda f: subprocess.check_output(['/usr/bin/exiftool', '-json', f])
if not re.match('^[a-z0-9]', self.filename):
if re.search('^[a-z0-9]', self.filename) is None:
out = self.__handle_problematic_filename(self.filename, fun)
else:
out = fun(self.filename)