From: Cliff Brake Date: Mon, 20 Oct 2008 15:02:29 +0000 (-0400) Subject: weekly-changelog-report.py: remove "Merge Branch" entries, add TODO list X-Git-Tag: Release-2010-05/1~5731^2~2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=059a65f61cdf1e5201e102ac7436be70fe3678c0;p=openembedded.git weekly-changelog-report.py: remove "Merge Branch" entries, add TODO list --- diff --git a/contrib/weekly-changelog-report.py b/contrib/weekly-changelog-report.py index 2898c2f97f..b5e70cb5be 100755 --- a/contrib/weekly-changelog-report.py +++ b/contrib/weekly-changelog-report.py @@ -4,6 +4,10 @@ # generates an OE changelog for last weeks activity (Mon-Sun) assuming it is run on # any day of the following week +# TODO +# - remove patch count as it does not match after we remove "Merge branch" statements +# - add bugzilla info + import datetime import os @@ -19,6 +23,6 @@ start_day = end_day - datetime.timedelta(7) print "OE weekly changelog %s to %s\n" % (start_day.isoformat(), end_day.isoformat()) -os.system("git-shortlog --since=%s --until=%s" % (start_day.isoformat(), end_day.isoformat())) +os.system("git-shortlog --since=%s --until=%s | grep -v \"Merge branch\"" % (start_day.isoformat(), end_day.isoformat()))