From: Yousong Zhou Date: Mon, 4 Nov 2019 11:09:38 +0000 (+0000) Subject: scripts/dl_github_archive.py: fix python3 str, bytes confusion X-Git-Tag: v19.07.0-rc1~7 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5d6308ecaeaec303efe18ecabef93583bde6e3e4;p=oweals%2Fopenwrt.git scripts/dl_github_archive.py: fix python3 str, bytes confusion Signed-off-by: Yousong Zhou (cherry picked from commit d26738bc767f48d2dee7097cbfc6d07ffeee58fb) --- diff --git a/scripts/dl_github_archive.py b/scripts/dl_github_archive.py index 4bb7d131bb..1dc1c6ac9c 100755 --- 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, 'wb+') as f: + with os.fdopen(fileno, 'w+') as f: try: fcntl.lockf(fileno, fcntl.LOCK_EX) self._cache_init(f)