diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2019-05-16 20:24:10 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2019-05-16 20:24:10 -0300 |
commit | e5b7b3a23a7b9042fb3db2cec4c6142ebd492fd2 (patch) | |
tree | 531a24e02300798b64cd54051cdd941ea2c13a7f | |
parent | 6e17ae92706ff62fa2203905f419b75e1bd837fc (diff) | |
download | ckandumper-e5b7b3a23a7b9042fb3db2cec4c6142ebd492fd2.tar.gz ckandumper-e5b7b3a23a7b9042fb3db2cec4c6142ebd492fd2.tar.bz2 |
Coding style
-rwxr-xr-x | ckandumper | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -104,8 +104,8 @@ class DownloadMultiple: hasher = 'cd ' + os.path.dirname(local_filename) + '&& /usr/bin/sha256sum ' hasher += os.path.basename(local_filename) + ' > ' + os.path.basename(local_filename) + '.sha256' hash = await asyncio.create_subprocess_shell(hasher, - stdout=asyncio.subprocess.PIPE, - stderr=asyncio.subprocess.PIPE) + stdout=asyncio.subprocess.PIPE, + stderr=asyncio.subprocess.PIPE) if not str(proc.returncode) in self.globalstats['exitstatus']: self.globalstats['exitstatus'][str(proc.returncode)] = [] |