From 81fae9325fd30432f6001f16e2ae8a1dae89e312 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Mon, 2 Sep 2013 11:31:45 +0200 Subject: [PATCH] cdist is written with a small c ... and the error message being made nicer Signed-off-by: Nico Schottelius --- scripts/cdist | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/cdist b/scripts/cdist index 38ff5cb2..39449666 100755 --- a/scripts/cdist +++ b/scripts/cdist @@ -128,8 +128,8 @@ if __name__ == "__main__": cdistpythonversion = '3.2' if sys.version < cdistpythonversion: - print('Cdist requires Python >= ' + cdistpythonversion + - ' on the source host.', file=sys.stderr) + print('Python >= ' + cdistpythonversion + + ' is required on the source host.', file=sys.stderr) sys.exit(1)