mirror of https://github.com/hak5/openwrt.git
scripts/dl_github_archive.py: fix python3 str, bytes confusion
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>master
parent
a5428d8c9b
commit
d26738bc76
|
@ -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)
|
||||||
|
@ -203,7 +203,7 @@ class GitHubCommitTsCache(object):
|
||||||
ts = ent[0]
|
ts = ent[0]
|
||||||
updated = ent[1]
|
updated = ent[1]
|
||||||
line = '{0} {1} {2}\n'.format(k, ts, updated)
|
line = '{0} {1} {2}\n'.format(k, ts, updated)
|
||||||
fout.write(line.encode('utf-8'))
|
fout.write(line)
|
||||||
|
|
||||||
|
|
||||||
class DownloadGitHubTarball(object):
|
class DownloadGitHubTarball(object):
|
||||||
|
|
Loading…
Reference in New Issue