scripts/dl_github_archive.py: fix python3 str, bytes confusion
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com> (cherry picked from commit d26738bc767f48d2dee7097cbfc6d07ffeee58fb)
This commit is contained in:
parent
22c443c20c
commit
5d6308ecae
@ -177,7 +177,7 @@ class GitHubCommitTsCache(object):
|
|||||||
def set(self, k, v):
|
def set(self, k, v):
|
||||||
"""Update timestamp with ``k``."""
|
"""Update timestamp with ``k``."""
|
||||||
fileno = os.open(self.cachef, os.O_RDWR | os.O_CREAT)
|
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:
|
try:
|
||||||
fcntl.lockf(fileno, fcntl.LOCK_EX)
|
fcntl.lockf(fileno, fcntl.LOCK_EX)
|
||||||
self._cache_init(f)
|
self._cache_init(f)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user