From c26108a61e279893e8d973afceb9fcad6bd5fa35 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jun 02 2015 09:26:55 +0000 Subject: Fix the fedmsg hook to avoid having duplicated arguments --- diff --git a/pagure/hooks/files/fedmsg_hook.py b/pagure/hooks/files/fedmsg_hook.py index 1716898..93f0ff3 100755 --- a/pagure/hooks/files/fedmsg_hook.py +++ b/pagure/hooks/files/fedmsg_hook.py @@ -25,7 +25,7 @@ print "Emitting a message to the fedmsg bus." config = fedmsg.config.load_config([], None) config['active'] = True config['endpoints']['relay_inbound'] = config['relay_inbound'] -fedmsg.init(name='relay_inbound', cert_prefix='scm', **config) +fedmsg.init(name='relay_inbound', **config) def build_stats(commit):