Blob Blame History Raw
From 4abfd7ea70d7c1d8f1ee4b87dcff0e121823b523 Mon Sep 17 00:00:00 2001
From: Radostin Stoyanov <radostin@redhat.com>
Date: Sun, 5 Sep 2021 22:37:26 +0100
Subject: [PATCH 020/120] coredump: fix missing whitespace around operator

Missing whitespace around arithmetic operator
https://www.flake8rules.com/rules/E226.html

Signed-off-by: Radostin Stoyanov <radostin@redhat.com>
---
 coredump/coredump.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/coredump/coredump.py b/coredump/coredump.py
index e63abf951..5e63d2138 100644
--- a/coredump/coredump.py
+++ b/coredump/coredump.py
@@ -10,7 +10,7 @@ def coredump(opts):
     for pid in cores:
         if opts['pid'] and pid != opts['pid']:
             continue
-        with open(os.path.realpath(opts['out'])+"/core."+str(pid), 'wb+') as f:
+        with open(os.path.realpath(opts['out']) + "/core." + str(pid), 'wb+') as f:
             cores[pid].write(f)
 
 
-- 
2.34.1