From 8877a9b27d6b266dd149bd08d0488a1c99668f36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20A=C5=9F=C4=B1c=C4=B1?= Date: Thu, 27 May 2010 08:28:16 +0000 Subject: [PATCH] scripts/make-changelog: Write bug report links --- scripts/make-changelog.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/make-changelog.py b/scripts/make-changelog.py index 678247d3..b648877c 100755 --- a/scripts/make-changelog.py +++ b/scripts/make-changelog.py @@ -29,10 +29,11 @@ def cleanup_msg_lines(lines): for line in lines: if line.startswith("BUG:FIXED:"): bug_number = line.split(":")[2] - line = "Fixed bug #%s." % bug_number + line = "Fixes the bug reported at http://bugs.pardus.org.tr/%s." % bug_number elif line.startswith("BUG:COMMENT:"): - continue + bug_number = line.split(":")[2] + line = "See http://bugs.pardus.org.tr/%s." % bug_number elif line.startswith("Changes since "): return result[:-1]