mirror of
https://github.com/checkpoint-restore/criu
synced 2025-09-03 07:45:17 +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):
|
def decode_flav(i):
|
||||||
return flavors.keys().get([i - 128], "unknown")
|
return flavors.get(i - 128, "unknown")
|
||||||
|
|
||||||
|
|
||||||
def tail(path):
|
def tail(path):
|
||||||
|
Reference in New Issue
Block a user