From 7badbca045f76101f09bc8d786de4ad16c2a5566 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Mon, 18 Aug 2014 13:38:10 -0400 Subject: [PATCH] Fix license exceeded message --- 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 67907ad8e2..d63f7b425c 100644 --- a/awx/main/management/commands/inventory_import.py +++ b/awx/main/management/commands/inventory_import.py @@ -35,11 +35,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://www.ansible.com/ansible-tower for license extension information.''' +See http://www.ansible.com/renew 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://www.ansible.com/ansible-tower for licensing information.''' +See http://www.ansible.com/renew for licensing information.''' class MemObject(object):