From 7f64d57bbdcd44d0838452ad8309f9dca4ca67f7 Mon Sep 17 00:00:00 2001 From: Terrtia Date: Fri, 21 Feb 2020 13:08:39 +0100 Subject: [PATCH] fix: [Update] force str tags --- bin/Update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/Update.py b/bin/Update.py index b9abd8d3..c3285a04 100755 --- a/bin/Update.py +++ b/bin/Update.py @@ -197,7 +197,7 @@ def get_git_upper_tags_remote(current_tag, is_fork): # add tag with last commit if float(tag_val) >= float(current_tag): dict_tags_commit[tag_val] = commit - list_upper_tags = [(key, dict_tags_commit[key]) for key in dict_tags_commit] + list_upper_tags = [(str(key), dict_tags_commit[key]) for key in dict_tags_commit] # force update order list_upper_tags.sort() return list_upper_tags