From: Philippe Proulx Date: Fri, 18 Mar 2016 21:51:54 +0000 (-0400) Subject: cli: error msg: specify "regular file" X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=911264752a5ae9237dea82e3a0f88891749e1668;p=deliverable%2Fbarectf.git cli: error msg: specify "regular file" Signed-off-by: Philippe Proulx --- diff --git a/barectf/cli.py b/barectf/cli.py index b9d8b41..1734117 100644 --- a/barectf/cli.py +++ b/barectf/cli.py @@ -105,7 +105,7 @@ def _parse_args(): # validate that configuration file exists if not os.path.isfile(args.config): - _perror('"{}" is not an existing file'.format(args.config)) + _perror('"{}" is not an existing, regular file'.format(args.config)) # append current working directory and provided include directory args.include_dir += [os.getcwd(), resource_filename(__name__, 'include')]