diff options
author | Florian Jung <flo@windfisch.org> | 2013-09-03 16:21:59 +0200 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2013-09-03 16:21:59 +0200 |
commit | 286e39adb5e124d5cb85ce08adc842bfd11abfb8 (patch) | |
tree | ef4f302713e1dc6878a65bff432b4b3531b411a9 | |
parent | fbdd6fa0e21b717ffe74046351540fcd9b6b9151 (diff) |
Write sf-id into title instead of tagspam.
-rwxr-xr-x | issues.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |