From 5eefda8b85e8fa01f22e54bfdac12db95b3dba39 Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Fri, 31 Oct 2014 11:20:14 +0100 Subject: [PATCH] Cli: Fix import description for 'repository add' --- lib/cli/repositoryobjectcommand.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cli/repositoryobjectcommand.cpp b/lib/cli/repositoryobjectcommand.cpp index b8beb46b0..7ce0ae9d0 100644 --- a/lib/cli/repositoryobjectcommand.cpp +++ b/lib/cli/repositoryobjectcommand.cpp @@ -121,7 +121,7 @@ void RepositoryObjectCommand::InitParameters(boost::program_options::options_des { if (m_Command == RepositoryCommandAdd) { visibleDesc.add_options() - ("import", po::value >(), "Import the defined template(s) into the object. Must be defined and included separately in Icinga 2"); + ("import", po::value >(), "Import the defined template into the object. Must be defined and included separately in Icinga 2"); } }