aboutsummaryrefslogtreecommitdiffstats
path: root/util/check_valid.py
diff options
context:
space:
mode:
authorJustin chi <chigang@huawei.com>2017-03-27 13:27:54 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-03-27 13:27:54 +0000
commitd52a11770689f4fd4d2bc4b9bf8dc09d4dd62ebf (patch)
tree1a36a5857e95419bfcdfba86ea09093b44f8626b /util/check_valid.py
parentc79c539411bec3da60bf60cb41906c63c1184ce5 (diff)
parent88a7278e949b7a4bb777d9f36f0e27eade2b46d6 (diff)
Merge "opera adapter fix2"
Diffstat (limited to 'util/check_valid.py')
-rw-r--r--util/check_valid.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/check_valid.py b/util/check_valid.py
index 9eaa100d..e3ad6bcd 100644
--- a/util/check_valid.py
+++ b/util/check_valid.py
@@ -135,7 +135,7 @@ if __name__ == "__main__":
_, dha_file, network_file = sys.argv
if not os.path.exists(dha_file):
- err_print("DHA file doesn't exit")
+ err_print("DHA file doesn't exist")
sys.exit(1)
else:
dha = load_file(dha_file)
@@ -148,7 +148,7 @@ if __name__ == "__main__":
has_invalid = True
if not os.path.exists(network_file):
- err_print("NETWORK file doesn't exit")
+ err_print("NETWORK file doesn't exist")
sys.exit(1)
else:
network = load_file(network_file)