1
0
Fork 0

Improve a bit the performances wrt. image's metadata display

This commit is contained in:
jvoisin 2018-06-10 00:43:38 +02:00
parent 9c7aa34f50
commit 3c56fa3237
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 re.search('^[a-z0-9]', self.filename) is None:
if re.search('^[a-z0-9/]', self.filename) is None:
out = self.__handle_problematic_filename(self.filename, fun)
else:
out = fun(self.filename)