summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2014-01-26 01:14:58 -0500
committerAdam <Adam@anope.org>2014-01-26 01:14:58 -0500
commit87230c17b769980abcd6f501d325182973525d03 (patch)
tree9204ce49617e598a047bda3d4bce9ae0b6ad8e48 /src
parenta29b7897f0253f68d7db2a67a570c72de5cd7db0 (diff)
Fix extra space in the unknown command error message
Diffstat (limited to 'src')
-rw-r--r--src/command.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command.cpp b/src/command.cpp
index fe1f9e30d..6aa2f744b 100644
--- a/src/command.cpp
+++ b/src/command.cpp
@@ -218,7 +218,7 @@ void Command::Run(CommandSource &source, const Anope::string &message)
if (it == source.service->commands.end())
{
if (has_help)
- source.Reply(_("Unknown command \002%s\002. \"%s %s HELP\" for help."), message.c_str(), Config->StrictPrivmsg.c_str(), source.service->nick.c_str());
+ source.Reply(_("Unknown command \002%s\002. \"%s%s HELP\" for help."), message.c_str(), Config->StrictPrivmsg.c_str(), source.service->nick.c_str());
else
source.Reply(_("Unknown command \002%s\002."), message.c_str());
return;