fix typo
This commit is contained in:
parent
930b48e55b
commit
834a693282
1 changed files with 2 additions and 2 deletions
|
@ -98,8 +98,8 @@ async def main_with_ctx(ctx, wanted_date):
|
|||
|
||||
# write to output
|
||||
log.info("copying temp to output")
|
||||
with output_path.open(mode="wb") as output_fd:
|
||||
shutil.copyfileobj(temp_fd, output_fd)
|
||||
with output_path.open(mode="wb") as output_fdout:
|
||||
shutil.copyfileobj(temp_fd, output_fdout)
|
||||
|
||||
# decompress
|
||||
for url_type, _url in urls.items():
|
||||
|
|
Loading…
Reference in a new issue