From 7cc7c18e77dfeafb018ba12b3969d3be4fd47c5a Mon Sep 17 00:00:00 2001 From: Darko Poljak Date: Mon, 15 Aug 2016 16:37:11 +0200 Subject: [PATCH] Add hint for command line flag for enable-beta. --- cdist/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cdist/__init__.py b/cdist/__init__.py index d06ae28b..9068ae69 100644 --- a/cdist/__init__.py +++ b/cdist/__init__.py @@ -66,7 +66,8 @@ class CdistBetaRequired(cdist.Error): def __str__(self): err_msg = ("\'{}\' argument of \'{}\' command is beta, but beta is " "not enabled. If you want to use it please enable beta " - "functionalities.") + "functionalities by using the -b/--enable-beta command " + "line flag.") return err_msg.format(self.arg, self.command)