mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-29 13:28:27 +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:
parent
579066633b
commit
baad88d5ec
@ -10,7 +10,7 @@ def coredump(opts):
|
|||||||
for pid in cores:
|
for pid in cores:
|
||||||
if opts['pid'] and pid != opts['pid']:
|
if opts['pid'] and pid != opts['pid']:
|
||||||
continue
|
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)
|
cores[pid].write(f)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user