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
Lines 320 and 334 in pdf.py both contain the code:
streamLocation = re.search(....);
In both cases, the return value is unchecked. In the case where no match is
found this leads to a fatal AttributeError on the following line when
streamLocation.start() is accessed.
Suggest adding an 'if streamLocation:' check in both cases to allow the script
to continue.
Original issue reported on code.google.com by [email protected] on 8 Aug 2014 at 6:26
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 8 Aug 2014 at 6:26The text was updated successfully, but these errors were encountered: