summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2013-09-03 16:21:59 +0200
committerFlorian Jung <flo@windfisch.org>2013-09-03 16:21:59 +0200
commit286e39adb5e124d5cb85ce08adc842bfd11abfb8 (patch)
treeef4f302713e1dc6878a65bff432b4b3531b411a9
parentfbdd6fa0e21b717ffe74046351540fcd9b6b9151 (diff)
Write sf-id into title instead of tagspam.
-rwxr-xr-xissues.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/issues.py b/issues.py
index 826a3c4..873b615 100755
--- a/issues.py
+++ b/issues.py
@@ -108,6 +108,7 @@ def handle_tracker_item(item, issue_title_prefix):
item_details,
])
closed = item_id in closed_status_ids
+ title=title+" [sf#%s]" % (item_id,)
labels = []
try:
if "Feature" in issue_title_prefix:
@@ -121,7 +122,6 @@ def handle_tracker_item(item, issue_title_prefix):
labels.append("question")
labels.append("import")
- labels.append(labelify("sf#"+item_id))
except KeyError:
pass
try: