From 911264752a5ae9237dea82e3a0f88891749e1668 Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Fri, 18 Mar 2016 17:51:54 -0400 Subject: [PATCH] cli: error msg: specify "regular file" Signed-off-by: Philippe Proulx --- barectf/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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')] -- 2.34.1