From baad88d5ecf3e683948a33eee926b4cefeb2cd97 Mon Sep 17 00:00:00 2001 From: Radostin Stoyanov Date: Sun, 5 Sep 2021 22:37:26 +0100 Subject: [PATCH] coredump: fix missing whitespace around operator Missing whitespace around arithmetic operator https://www.flake8rules.com/rules/E226.html Signed-off-by: Radostin Stoyanov --- 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)