gitstats: Use format specifiers instead of appending to a string
commit64c853d8cd9bb6397d7c91cf4571a3a34cc77070
authorSverre Rabbelier <sverre@rabbelier.nl>
Sun, 20 Jul 2008 21:33:28 +0000 (20 23:33 +0200)
committerSverre Rabbelier <sverre@rabbelier.nl>
Sun, 20 Jul 2008 21:33:28 +0000 (20 23:33 +0200)
treeda7215a88e866c0e470f21f17450c6f935fb9f34
parent24b897d576684ce28f1f701f5b788500d9843304
gitstats: Use format specifiers instead of appending to a string

Instead of using '"foo" + str(myvar) + "bar"' it reads
a lot more natural to use '"foo %s bar" % myvar', plus it
prevents whitespace 'bugs'.
src/git_stats/author.py
src/git_stats/bug.py
src/git_stats/config.py
src/git_stats/diff.py
src/git_stats/parse.py