convert old flows to 0.17

This commit is contained in:
Maximilian Hils 2016-02-14 18:34:11 +01:00
parent 5cf0aea62f
commit 36f34f7019

View File

@ -34,10 +34,16 @@ def convert_015_016(data):
return data
def convert_016_017(data):
data["version"] = (0, 17)
return data
converters = {
(0, 13): convert_013_014,
(0, 14): convert_014_015,
(0, 15): convert_015_016,
(0, 16): convert_016_017,
}