mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-31 14:25:49 +00:00
zdtm.py: fix decode_flav()
Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
This commit is contained in:
@@ -293,7 +293,7 @@ def encode_flav(f):
|
||||
|
||||
|
||||
def decode_flav(i):
|
||||
return flavors.keys().get([i - 128], "unknown")
|
||||
return flavors.get(i - 128, "unknown")
|
||||
|
||||
|
||||
def tail(path):
|
||||
|
Reference in New Issue
Block a user