From 5ea87d28fbb0e68782a7f8c55f1551f14c2204d4 Mon Sep 17 00:00:00 2001 From: Chris Church Date: Mon, 27 Jan 2014 14:02:10 -0500 Subject: [PATCH] AC-988 Fix inventory script license message URL. --- awx/main/management/commands/inventory_import.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/main/management/commands/inventory_import.py b/awx/main/management/commands/inventory_import.py index aafb4d06ae..032eaea84a 100644 --- a/awx/main/management/commands/inventory_import.py +++ b/awx/main/management/commands/inventory_import.py @@ -30,11 +30,11 @@ logger = logging.getLogger('awx.main.commands.inventory_import') LICENSE_MESSAGE = '''\ Number of licensed instances exceeded, would bring available instances to %(new_count)d, system is licensed for %(available_instances)d. -See http://ansibleworks.com/ansibleworks-awx for license extension information.''' +See http://www.ansible.com/ansible-tower for license extension information.''' DEMO_LICENSE_MESSAGE = '''\ Demo mode free license count exceeded, would bring available instances to %(new_count)d, demo mode allows %(available_instances)d. -See http://ansibleworks.com/ansibleworks-awx for licensing information.''' +See http://www.ansible.com/ansible-tower for licensing information.''' class MemObject(object):