From 5917601b6a9355117aa92f7b0c8c2d78b16c6f0c Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Thu, 1 Sep 2011 18:59:36 +0200 Subject: [PATCH] not as pretty as i want it --- build.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.py b/build.py index fd44cf0..3c94328 100755 --- a/build.py +++ b/build.py @@ -300,10 +300,10 @@ if __name__ == '__main__': if ret: raise Exception('git log was not successfull') - git_log_output = map( - lambda x: x.rstrip(), - git_log.stdout.readlines() - ) + #git_log_output = map( + # lambda x: x.rstrip(), + # git_log.stdout.readlines() + #) cmd = [ @@ -316,7 +316,7 @@ if __name__ == '__main__': '--distribution', '%s' %(options.distribution), '--', - '%s' %(''.join(git_log_output,'\n')) + '%s' %(''.join(git_log.stdout.read())) ] # '%s' %(git_log_output) # '%s' %(''.join(git_log.stdout.read())) -- 2.39.5