Comment 7 for bug 740140

Revision history for this message
wribeiro (wribeiro) wrote :

Ok Till.
The way I found to install hp-plugin is apply a small change on file "/usr/lib/python2.6/urllib.py", line 265, replacing the code
  size = int(headers["Content-Length"])
by
  size = int(headers["Content-Length"].split(",")[0])

That's because headers["Content-Length"] seems to be returning something like "7054, 7054" instead of "7054" that might be
expected.

After this hp-plugin works fine.