You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
jpeg = TBP.Jpeg('/123.jpg')
make jpeg.getExifTag('Make', 'tiff')
Expected: return the value of Make
Actual: ValueError exception is thrown
Version: alpha-2
Please provide any additional information below.
The problem is on line 136 of metainfofile.py
The problem that 'tiff' is the first item in the list with an index of
zero. The previous lines find 'tiff' in the list but the statement
if (index)
will resolve to false because index == 0. This statement should probably
change to
if (index+1)
or
if (index >= 0)
Original issue reported on code.google.com by [email protected] on 11 May 2007 at 10:09
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 11 May 2007 at 10:09The text was updated successfully, but these errors were encountered: