From b75bf0126273703998c75ae70d8c5f1c7f28aedf Mon Sep 17 00:00:00 2001 From: Heikki Hokkanen Date: Sat, 28 Jun 2008 12:49:27 +0300 Subject: [PATCH] Remove some debugging prints etc. Added in a01045f2480a21f28dd90e278b4f560020a97b9e. --- gitstats | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/gitstats b/gitstats index e79f9cd..4651e54 100755 --- a/gitstats +++ b/gitstats @@ -134,10 +134,7 @@ class GitDataCollector(DataCollector): for line in lines: if len(line) == 0: continue - print "line = ", line - splitted_str = line.split(' ') - print "splitted_str = ", splitted_str - (hash, tag) = splitted_str + (hash, tag) = line.split(' ') tag = tag.replace('refs/tags/', '') output = getpipeoutput(['git-log "%s" --pretty=format:"%%at %%an" -n 1' % hash]) @@ -160,9 +157,6 @@ class GitDataCollector(DataCollector): try: stamp = int(parts[0]) except ValueError: - print "lines = ", lines - print "line = ", line - raise stamp = 0 if len(parts) > 1: author = ' '.join(parts[1:]) -- 2.11.4.GIT