From 70d915212ad256f8781faec98a3f92867566be13 Mon Sep 17 00:00:00 2001 From: Brandon Palm Date: Mon, 15 Feb 2016 15:44:36 -0600 Subject: [PATCH] Fixed English in print statement 'is not existed' -> 'does not exist' Change-Id: I18b2346b2639eb254de8d4c4d5031946135fcc23 --- vmtp/vmtp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vmtp/vmtp.py b/vmtp/vmtp.py index d3b1d60..04f6375 100755 --- a/vmtp/vmtp.py +++ b/vmtp/vmtp.py @@ -184,7 +184,7 @@ class VmtpTest(object): self.instance_access.public_key_file = pub_key self.instance_access.private_key_file = priv_key else: - print('Error: Default keypair ~/.ssh/id_rsa[.pub] is not existed. Please ' + print('Error: Default keypair ~/.ssh/id_rsa[.pub] does not exist. Please ' 'either create one in your home directory, or specify your keypair ' 'information in the config file before running VMTP.') sys.exit(1)