Skip to content

Commit

Permalink
correct spelling mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwardBetts authored and ianare committed Jul 30, 2020
1 parent 053eb84 commit 467abe6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion exifread/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from .utils import ord_
from .heic import HEICExifFinder

__version__ = '2.1.2'
__version__ = '2.2.0'

logger = get_logger()

Expand Down
2 changes: 1 addition & 1 deletion exifread/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def dump_ifd(self, ifd, ifd_name, tag_dict=EXIF_TAGS, relative=0, stop_tag=DEFAU
# special case: null-terminated ASCII string
# XXX investigate
# sometimes gets too big to fit in int value
if count != 0: # and count < (2**31): # 2E31 is hardware dependant. --gd
if count != 0: # and count < (2**31): # 2E31 is hardware dependent. --gd
file_position = self.offset + offset
try:
self.file.seek(file_position)
Expand Down

0 comments on commit 467abe6

Please sign in to comment.