enable-beta -> beta

remotes/origin/prometheus
Darko Poljak 8 years ago
parent bc5f6c8923
commit d17c517a0c
  1. 4
      cdist/__init__.py

4
cdist/__init__.py vendored

@ -67,13 +67,13 @@ class CdistBetaRequired(cdist.Error):
if self.arg is None:
err_msg = ("\'{}\' command is beta, but beta is "
"not enabled. If you want to use it please enable beta "
"functionalities by using the -b/--enable-beta command "
"functionalities by using the -b/--beta command "
"line flag or setting CDIST_BETA env var.")
fmt_args = [self.command, ]
else:
err_msg = ("\'{}\' argument of \'{}\' command is beta, but beta "
"is not enabled. If you want to use it please enable "
"beta functionalities by using the -b/--enable-beta "
"beta functionalities by using the -b/--beta "
"command line flag or setting CDIST_BETA env var.")
fmt_args = [self.arg, self.command, ]
return err_msg.format(*fmt_args)

Loading…
Cancel
Save