From 783e0e1248a4bad3882135adf3eb69e9429b8ec4 Mon Sep 17 00:00:00 2001 From: Jakub Filak Date: Mon, 14 Oct 2013 10:45:00 +0200 Subject: [ABRT PATCH 29/76] don't consider crashes posted to ABRT server as reported ABRT server uses the same logic. A crash is considered as reported only if a bugzilla bug is attached to this crash. ABRT has to allow users to report a crash to Bugzilla because ABRT server does not support interaction between reporters and developers. Closes rhbz#1018570 Signed-off-by: Jakub Filak --- src/plugins/abrt-action-ureport | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/abrt-action-ureport b/src/plugins/abrt-action-ureport index 38890bf..8c0f36f 100755 --- a/src/plugins/abrt-action-ureport +++ b/src/plugins/abrt-action-ureport @@ -91,7 +91,7 @@ if __name__ == "__main__": if reported_to and reported_to != "": bugs = set() for line in reported_to.split("\n"): - if line.startswith("Bugzilla:") or line.startswith("ABRT Server:"): + if line.startswith("Bugzilla:"): bugs.add(line) if bugs: log(_("A bug was already filed about this problem:")) -- 1.8.3.1