From c7fddc7ae7ef7d3fe9972214dd256610f0876391 Mon Sep 17 00:00:00 2001 From: Alan Rominger Date: Thu, 6 Jul 2017 09:55:52 -0400 Subject: [PATCH] fix flake8 error from removal of word Tower --- awx/main/tasks.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/awx/main/tasks.py b/awx/main/tasks.py index ff32cfdb4e..b32e5bfb16 100644 --- a/awx/main/tasks.py +++ b/awx/main/tasks.py @@ -191,9 +191,9 @@ def cluster_node_heartbeat(self): continue if Version(other_inst.version.split('-', 1)[0]) > Version(tower_application_version) and not settings.DEBUG: logger.error("Host {} reports version {}, but this node {} is at {}, shutting down".format(other_inst.hostname, - other_inst.version, - inst.hostname, - inst.version)) + other_inst.version, + inst.hostname, + inst.version)) stop_local_services(['uwsgi', 'celery', 'beat', 'callback', 'fact'])