forked from smarnach/pyexiftool
-
Notifications
You must be signed in to change notification settings - Fork 24
Closed
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
Description
The documentation of propertyexiftool.ExifTool.encoding tells:
Default to UTF-8 if nothing is returned ...
But the code of the @encoding.setter is:
ENCODING_UTF8: str = "utf-8"
... and ...
self._encoding = new_encoding or (locale.getpreferredencoding(do_setlocale=False) or ENCODING_UTF8)
Therefore the documentation should tell:
Defaults to utf-8 if nothing is returned ...
... else debugging people like me may be wondering why the self._encoding value is not 'UTF-8'.
sylikc
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation