Opened 11 years ago
Closed 11 years ago
#12035 closed Patch - Bug Fix (Fixed)
Fix typo in tmdb3/cache_file.py
Reported by: | Owned by: | Raymond Wagner | |
---|---|---|---|
Priority: | minor | Milestone: | 0.27.1 |
Component: | Contributed Scripts & Apps | Version: | Master Head |
Severity: | medium | Keywords: | tmdb3, python, bindings |
Cc: | Ticket locked: | no |
Description
I hit this error when fixing this to work in the OS X bundle. (which I have working just fine!)
Attachments (1)
Change History (6)
Changed 11 years ago by
Attachment: | 0001-Fix-typo-in-tmdb3-cache_file.py.patch added |
---|
comment:1 Changed 11 years ago by
Status: | new → accepted |
---|
comment:2 follow-up: 3 Changed 11 years ago by
I'll get this committed when I get home tonight, however note that this would not cause the grabber to fail, but merely result in a less accurate error to be returned when it does fail.
comment:3 Changed 11 years ago by
Replying to wagnerrp:
I'll get this committed when I get home tonight, however note that this would not cause the grabber to fail, but merely result in a less accurate error to be returned when it does fail.
Actually, it did cause the grabber to fail because the attribute does not exist:
AttributeError: 'module' object has no attribute 'EACCESS'
It passes through because it's except IOError
above instead of just except
.
comment:4 Changed 11 years ago by
The grabber had already failed by the time it tried to execute that line.
comment:5 Changed 11 years ago by
Component: | Bindings - Python → Contributed Scripts & Apps |
---|---|
Milestone: | unknown → 0.27.1 |
Resolution: | → Fixed |
Status: | accepted → closed |
Changes merged in from upstream at 1dd851f772da9eb1 and 6b353625177a4dd6.
Patch.