From 70fb72c8253b3fa9343ddb576d52e9976f817578 Mon Sep 17 00:00:00 2001 From: Mattia Rizzolo Date: Sun, 3 May 2015 11:29:03 +0200 Subject: reproducible: move the code to call kgb and relay messagess to common.py --- bin/reproducible_notes.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'bin/reproducible_notes.py') diff --git a/bin/reproducible_notes.py b/bin/reproducible_notes.py index d8276635..307774a6 100755 --- a/bin/reproducible_notes.py +++ b/bin/reproducible_notes.py @@ -13,7 +13,6 @@ import json import yaml from apt_pkg import version_compare from reproducible_common import * -from subprocess import call NOTES = 'packages.yml' ISSUES = 'issues.yml' @@ -50,9 +49,8 @@ def load_notes(): print_critical_message('Warning: This query produces no results: ' + query + '\nThis means there is no tested ' + 'package with the name ' + pkg) - kgb = ['kgb-client', '--conf', '/srv/jenkins/kgb/debian-reproducible.conf', - '--relay-msg', 'There is problem with the note for '+pkg+' - please investigate' ] - call(kgb) + irc_msg('There is problem with the note for ' + pkg + + ' - please investigate') else: notes[pkg] = [] for suite in result: -- cgit v1.2.3-54-g00ecf