Search found 3 matches
- September 5th, 2011, 9:30 am
- Forum: Bug Reports
- Topic: 0.6.5 fails to upload NZB's
- Replies: 29
- Views: 21114
Re: 0.6.5 fails to upload NZB's
Yea, I originally had a slightly more intrusive patch that also changed the add_nzbfile function in __init__.py to avoid slurping the file content out of one tmpfile just to write() it back out, but this was the smaller workaround. As an aside, I didn't see an obvious link for sending patches. Is th...
- September 5th, 2011, 8:45 am
- Forum: Bug Reports
- Topic: 0.6.5 fails to upload NZB's
- Replies: 29
- Views: 21114
Re: 0.6.5 fails to upload NZB's
Doesn't seem to vary with nzb size. I've tested with recent versions of Chrome and Firefox. The nzbfile object that cherrypy is delivering looks like it comes through pretty much untouched from the CGI module, which overrides __getattr__ to make .value equivalent to self.file.seek(0); self.file.read...
- September 5th, 2011, 8:14 am
- Forum: Bug Reports
- Topic: 0.6.5 fails to upload NZB's
- Replies: 29
- Views: 21114
Re: 0.6.5 fails to upload NZB's
Ran into this bug on FreeBSD 9. For some reason, file.value is set to None (not sure where the bug orginates, the code in python's cgi.py looks like it should do the right thing). A trivial workaround patch which fixes the issue: --- interface.py.old 2011-09-05 09:00:02.000000000 -0400 +++ interface...