mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 02:14:37 +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
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue