Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRadostin Stoyanov <radostin@redhat.com>2021-09-06 00:37:26 +0300
committerAndrei Vagin <avagin@gmail.com>2022-04-29 03:53:52 +0300
commitbaad88d5ecf3e683948a33eee926b4cefeb2cd97 (patch)
tree73a45f5d99c3bd4fa25a8cb2073c6762499d19a8 /coredump
parent579066633ba3f2c3b9c6e4dfe1d8182cebb600ec (diff)
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>
Diffstat (limited to 'coredump')
-rw-r--r--coredump/coredump.py2
1 files changed, 1 insertions, 1 deletions
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)