aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2019-05-16 20:24:10 -0300
committerSilvio Rhatto <rhatto@riseup.net>2019-05-16 20:24:10 -0300
commite5b7b3a23a7b9042fb3db2cec4c6142ebd492fd2 (patch)
tree531a24e02300798b64cd54051cdd941ea2c13a7f
parent6e17ae92706ff62fa2203905f419b75e1bd837fc (diff)
downloadckandumper-e5b7b3a23a7b9042fb3db2cec4c6142ebd492fd2.tar.gz
ckandumper-e5b7b3a23a7b9042fb3db2cec4c6142ebd492fd2.tar.bz2
Coding style
-rwxr-xr-xckandumper4
1 files changed, 2 insertions, 2 deletions
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)] = []