[entropy.spm] PortagePlugin: fix undefined reference in xpaktools.read_xpak

This commit is contained in:
Fabio Erculiani
2011-01-23 16:26:01 +01:00
parent 276a7d8de7
commit fb2acecfc3
@@ -60,7 +60,7 @@ def read_xpak(tbz2file):
done = suck_xpak(tbz2file, tmp_path)
if not done:
return None
with open(xpakpath, "rb") as f:
with open(tmp_path, "rb") as f:
data = f.read()
return data
finally: