We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b86dfb6 + 9d0bebe commit 0bf47feCopy full SHA for 0bf47fe
1 file changed
appstore/pbw.py
@@ -54,6 +54,9 @@ def __init__(self, pbw, platform):
54
raise Exception("Bundle does not exist: " + pbw)
55
56
self.path = bundle_abs_path
57
+
58
+ with open(bundle_abs_path, "rb") as fh:
59
+ bundle = io.BytesIO(fh.read())
60
else:
61
bundle = io.BytesIO(pbw)
62
0 commit comments