Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Ricky Cook committed Jul 11, 2016
1 parent e1b3e3a commit 974a86b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion dockci/commands/gunicorn.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ def run(**kwargs):
channel.exchange_declare(exchange='dockci.job', type='topic')
channel.exchange_declare(exchange='dockci.queue', type='topic')
channel.queue_declare(queue='dockci.agent')
channel.queue_bind(exchange='dockci.queue', queue='dockci.agent', routing_key='*')
channel.queue_bind(exchange='dockci.queue',
queue='dockci.agent',
routing_key='*')
mq_conn.close()

if kwargs['db_migrate']:
Expand Down
1 change: 0 additions & 1 deletion dockci/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

import logging
import mimetypes
import multiprocessing
import os

from contextlib import contextmanager
Expand Down

0 comments on commit 974a86b

Please sign in to comment.