forked from Github/guess-filename.py
fixed wrong help text to install pyexiftool
This commit is contained in:
parent
7c0231e2d1
commit
9de494e382
1 changed files with 2 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
PROG_VERSION = u"Time-stamp: <2020-11-15 17:17:00 vk>"
|
PROG_VERSION = u"Time-stamp: <2020-11-15 22:53:32 vk>"
|
||||||
|
|
||||||
|
|
||||||
# TODO:
|
# TODO:
|
||||||
|
|
@ -975,7 +975,7 @@ class GuessFilename(object):
|
||||||
try:
|
try:
|
||||||
import exiftool # for reading image/video Exif meta-data
|
import exiftool # for reading image/video Exif meta-data
|
||||||
except ImportError:
|
except ImportError:
|
||||||
print("Could not find Python module \"exiftool\".\nPlease install it, e.g., with \"sudo pip install exiftool\".")
|
print("Could not find Python module \"exiftool\".\nPlease install it, e.g., with \"sudo pip install pyexiftool\".")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
myexiftool = exiftool.ExifTool()
|
myexiftool = exiftool.ExifTool()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue