summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/portage_checksum.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage_checksum.py b/pym/portage_checksum.py
index 171ecba2f..38a064aa2 100644
--- a/pym/portage_checksum.py
+++ b/pym/portage_checksum.py
@@ -94,7 +94,7 @@ def verify_all(filename, mydict, calc_prelink=0, strict=0):
if mydict["size"] != mysize:
return False,("Filesize does not match recorded size", mysize, mydict["size"])
except OSError, e:
- return False, str(e)
+ return False, (str(e), None, None)
for x in mydict.keys():
if x == "size":
continue