Fix grammar in exception

Change-Id: Ifa70ce6bd6bade1441f0d34e5e0f83ba0c7f8f3a
This commit is contained in:
Tim Burke 2018-01-17 10:02:30 -08:00
parent f55ed08894
commit dde07a7054
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ def _validate_options(options, args):
:param args: The args for this program.
"""
if len(args) < 2:
raise Exception("No enough arguments given")
raise Exception("Not enough arguments given")
if not os.path.exists(args[0]):
raise Exception(
"Constraints file %(con)s not found."