From: Silvio Rhatto Date: Thu, 16 May 2019 23:24:10 +0000 (-0300) Subject: Coding style X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=e5b7b3a23a7b9042fb3db2cec4c6142ebd492fd2;p=ckandumper.git Coding style --- diff --git a/ckandumper b/ckandumper index a11bb24..50669a0 100755 --- a/ckandumper +++ b/ckandumper @@ -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)] = []