From 414394afa0c4c3f8de6396c8ba9fe0cf8236cf36 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Fri, 26 Jun 2015 15:35:33 -0400 Subject: [PATCH] can not -> cannot (even though they are both correct) --- awx/main/management/commands/remove_instance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/management/commands/remove_instance.py b/awx/main/management/commands/remove_instance.py index 6eb5c35a02..d8712137be 100644 --- a/awx/main/management/commands/remove_instance.py +++ b/awx/main/management/commands/remove_instance.py @@ -33,7 +33,7 @@ class Command(BaseCommandInstance): # Sanity check: Do not remove the primary instance. if instance.primary: - raise CommandError('Can not remove primary instance %s. Another instance must be promoted to primary first.' % instance_str(instance)) + raise CommandError('Cannot remove primary instance %s. Another instance must be promoted to primary first.' % instance_str(instance)) # Remove the instance. instance.delete()