aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)] = []