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

New commits:
commit 2f103071bccddd87fd11668d56567d62fe67704a
Author: Markus Mohrhard <markus.mohrh...@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
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to