summaryrefslogtreecommitdiffstats
path: root/abrt-triage.py
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2009-12-09 19:28:03 -0500
committerDavid Malcolm <dmalcolm@redhat.com>2009-12-09 19:28:03 -0500
commit8f91dc950e36af17e01cd0a340ed0cca7175ec3f (patch)
tree71db71df370928b25009a73f4421abb78a3d3b02 /abrt-triage.py
parent9555ec818c28c223e1c17e012431de070ff421f4 (diff)
downloadtriage-8f91dc950e36af17e01cd0a340ed0cca7175ec3f.tar.gz
triage-8f91dc950e36af17e01cd0a340ed0cca7175ec3f.tar.xz
triage-8f91dc950e36af17e01cd0a340ed0cca7175ec3f.zip
Add another bug for dupes; fix an issue where script not identified
Diffstat (limited to 'abrt-triage.py')
-rwxr-xr-xabrt-triage.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/abrt-triage.py b/abrt-triage.py
index dd75c71..c2d6f39 100755
--- a/abrt-triage.py
+++ b/abrt-triage.py
@@ -262,7 +262,7 @@ def get_change(bz, bug_id):
(thread, frame) = bt.get_crash_site()
(newsummary, bt_blurb) = characterize_bt(bt, thread, script)
- if script.endswith('ies4linux-gtk.py'):
+ if script and script.endswith('ies4linux-gtk.py'):
return Change(bug,
newsummary='%s running %s' % (issue, 'ies4linux-gtk.py'),
comment=('''Thank you for your report. This bug is in the ies4linux script you are using to run Internet Explorer. Fedora does not provide or support this script. We would suggest that you report the problem to the upstream project at http://www.tatanka.com.br/ies4linux/ , but it does not seem to have been updated since February 2008, so the effort may be wasted. There is unfortunately nothing the Fedora project can do to help you with this problem.'''),
@@ -317,6 +317,9 @@ Reassigning component from "python" to "%(subpackage)s"
if newsummary == 'Crash in gtk_style_realize with "ClearlooksStyle"':
return Duplicate(bug, 538799)
+ if newsummary == 'Fatal error in "IA__gtk_accel_groups_activate" in gajim.py':
+ return Duplicate(bug, 544828)
+
ch = Change(bug,
newsummary = newsummary,
newcomponent = srpmname,