projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
93ffb57
)
getbinpkg.py: auto-handle NotImplementedError
author
Zac Medico
<zmedico@gentoo.org>
Thu, 16 Dec 2010 20:29:22 +0000
(12:29 -0800)
committer
Zac Medico
<zmedico@gentoo.org>
Thu, 16 Dec 2010 20:29:22 +0000
(12:29 -0800)
This should have been done as part of bug #338190.
pym/portage/getbinpkg.py
patch
|
blob
|
history
diff --git
a/pym/portage/getbinpkg.py
b/pym/portage/getbinpkg.py
index b225eab7f9ff928d3ba6366c47eb1d04709a6e3d..f85b65c00a5303b103e1ac516fb7c263d6b4d853 100644
(file)
--- a/
pym/portage/getbinpkg.py
+++ b/
pym/portage/getbinpkg.py
@@
-16,7
+16,7
@@
import time
import tempfile
import base64
-_all_errors = [ValueError, socket.error]
+_all_errors = [
NotImplementedError,
ValueError, socket.error]
try:
from html.parser import HTMLParser as html_parser_HTMLParser