Commit 2ed8b170 authored by Andrey Filippov's avatar Andrey Filippov

quated res, to maki it a string, not a number - can only concatenate str (not int) to str

parent 5a435e6e
......@@ -15,7 +15,7 @@ def version_update(path,file,evr):
try:
arr[evr]
except IndexError:
if (evr==1): res = 0
if (evr==1): res = "0"
if (evr==2): res = revision_update(path,file)
else:
res = arr[evr]
......
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