2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-22 09:58:09 +00:00

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>
This commit is contained in:
Radostin Stoyanov 2021-09-05 22:37:26 +01:00 committed by Andrei Vagin
parent 579066633b
commit baad88d5ec

View File

@ -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)