Commit 5785dbd9 authored by Andrei Vagin's avatar Andrei Vagin

zdtm.py: fix decode_flav()

Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent 20bc6aed
...@@ -293,7 +293,7 @@ def encode_flav(f): ...@@ -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):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment