projects
/
openwrt
/
staging
/
xback.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
22c443c
)
scripts/dl_github_archive.py: fix python3 str, bytes confusion
author
Yousong Zhou
<yszhou4tech@gmail.com>
Mon, 4 Nov 2019 11:09:38 +0000
(11:09 +0000)
committer
Yousong Zhou
<yszhou4tech@gmail.com>
Mon, 4 Nov 2019 11:12:23 +0000
(11:12 +0000)
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
(cherry picked from commit
d26738bc767f48d2dee7097cbfc6d07ffeee58fb
)
scripts/dl_github_archive.py
patch
|
blob
|
history
diff --git
a/scripts/dl_github_archive.py
b/scripts/dl_github_archive.py
index 4bb7d131bb8303e397649fddbf63e1df96b20b18..1dc1c6ac9cd72a321d1e7ddd203535c1fd86dc9f 100755
(executable)
--- a/
scripts/dl_github_archive.py
+++ b/
scripts/dl_github_archive.py
@@
-177,7
+177,7
@@
class GitHubCommitTsCache(object):
def set(self, k, v):
"""Update timestamp with ``k``."""
fileno = os.open(self.cachef, os.O_RDWR | os.O_CREAT)
- with os.fdopen(fileno, 'w
b
+') as f:
+ with os.fdopen(fileno, 'w+') as f:
try:
fcntl.lockf(fileno, fcntl.LOCK_EX)
self._cache_init(f)