[Libreoffice-commits] dev-tools.git: ciabot/libreoffice-bugzilla2.py

Markus Mohrhard markus.mohrhard at googlemail.com
Wed Nov 26 15:51:19 PST 2014


 ciabot/libreoffice-bugzilla2.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2f103071bccddd87fd11668d56567d62fe67704a
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date:   Wed Nov 26 23:49:39 2014 +0000

    fix script for commits to stable branches

diff --git a/ciabot/libreoffice-bugzilla2.py b/ciabot/libreoffice-bugzilla2.py
index 448b8b2..480182f 100644
--- a/ciabot/libreoffice-bugzilla2.py
+++ b/ciabot/libreoffice-bugzilla2.py
@@ -138,7 +138,7 @@ def find_target_version(repo, branch):
             return base + ".0.0.beta" + str(int(max(beta_list)) + 1)
         print(micro_list)
         # the next release from libreoffice-x-y is max existing z-branch + 1
-        return base + "." + str(max(micro_list) + 1)
+        return base + "." + str(int(max(micro_list)) + 1)
 
     return None
 


More information about the Libreoffice-commits mailing list