scripts/dl_github_archive.py: fix python3 str, bytes confusion
authorYousong Zhou <yszhou4tech@gmail.com>
Mon, 4 Nov 2019 11:09:38 +0000 (11:09 +0000)
committerYousong 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

index 4bb7d131bb8303e397649fddbf63e1df96b20b18..1dc1c6ac9cd72a321d1e7ddd203535c1fd86dc9f 100755 (executable)
@@ -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)