Skip to content

Commit

Permalink
Merge branch 'maintenance' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Wagner committed Jul 4, 2019
2 parents ec7cc8d + 8957b78 commit b017f80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions intelmq/bots/outputs/amqptopic/output.py
Expand Up @@ -41,8 +41,8 @@ def init(self):
self.connection_port = self.parameters.connection_port
self.connection_vhost = self.parameters.connection_vhost
if self.parameters.username and self.parameters.password:
self.kwargs['credentials'] = pika.PlainCredentials(self.username,
self.password)
self.kwargs['credentials'] = pika.PlainCredentials(self.parameters.username,
self.parameters.password)
self.connection_parameters = pika.ConnectionParameters(
host=self.connection_host,
port=self.connection_port,
Expand Down

0 comments on commit b017f80

Please sign in to comment.