diff options
author | Cliff Brake <cbrake@bec-systems.com> | 2008-10-20 11:02:29 -0400 |
---|---|---|
committer | Cliff Brake <cbrake@bec-systems.com> | 2008-10-20 11:02:29 -0400 |
commit | 059a65f61cdf1e5201e102ac7436be70fe3678c0 (patch) | |
tree | db25d13992f768e179968d2e37d91eda2e7a00f2 /contrib | |
parent | cf470a6ec35afde1ceb3e0d8af5e2504cfac3678 (diff) |
weekly-changelog-report.py: remove "Merge Branch" entries, add TODO list
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/weekly-changelog-report.py | 6 |
1 files changed, 5 insertions, 1 deletions
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())) |