]> Frank Brehm's Git Trees - profitbricks/jenkins-build-scripts.git/commitdiff
small fixes
authorHolger Levsen <holger@layer-acht.org>
Thu, 3 Nov 2011 13:50:29 +0000 (14:50 +0100)
committerHolger Levsen <holger@layer-acht.org>
Thu, 3 Nov 2011 13:50:29 +0000 (14:50 +0100)
kernel_inpbuilder.py
lib/git_helper.py

index c81b767c031252d8cdaf4fa6c262594803828cc2..82c0810186873794db37c5f3bb4f894469077369 100644 (file)
@@ -15,6 +15,7 @@ from glob import glob
 from logging import Formatter
 from ftplib import FTP
 from multiprocessing import cpu_count
+from lib import git_helper
 
 __version__ = '0.0.2'
 
index 6ffa06bde3aa532695fe47ec11e4dd901d16bba5..d4c313ae0f69b0304f580fa273dd1114939d2d70 100644 (file)
@@ -333,8 +333,9 @@ def git_get_commit_id():
                 %(' '.join(cmd), ret, error_str)
         )
         return False
-    logger.debug('current commit id is %s' % stdout_str[0])
-    return stdout_str[0]
+    stdout_str = cmdobj.stdout.read()
+    logger.debug('current commit id is %s' % stdout_str)
+    return stdout_str
 
 def git_get_commit_date():
     """
@@ -369,7 +370,8 @@ def git_get_commit_date():
                 %(' '.join(cmd), ret, error_str)
         )
         return False
-    logger.debug('current commit date is %s' % stdout_str[0])
-    return stdout_str[0]
+    stdout_str = cmdobj.stdout.read()
+    logger.debug('current commit date is %s' % stdout_str)
+    return stdout_str
 
 # vim: autoindent smartindent tabstop=4 expandtab shiftwidth=4 softtabstop=4 nu enc=utf-8 cinwords=if,elif,else,for,while,try,except,finally,def,class