diff options
author | Robby- <robby@chat.be> | 2013-09-14 14:40:17 +0200 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-09-27 19:11:02 -0400 |
commit | 4f820a7d41dbdf83b27005dcfb02507206708d6b (patch) | |
tree | df34793df95dff47106a84c55980354cf02b05b4 /modules/commands/os_modinfo.cpp | |
parent | 5f7127dd92ec9b86b64ea0bbc385e5c06be77fff (diff) |
Fix typos, remove dead language defines.
os_set: Add missing debug text in help output.
Diffstat (limited to 'modules/commands/os_modinfo.cpp')
-rw-r--r-- | modules/commands/os_modinfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/os_modinfo.cpp b/modules/commands/os_modinfo.cpp index 972f8631e..8f172132e 100644 --- a/modules/commands/os_modinfo.cpp +++ b/modules/commands/os_modinfo.cpp @@ -29,7 +29,7 @@ class CommandOSModInfo : public Command Module *m = ModuleManager::FindModule(file); if (m) { - source.Reply(_("Module: \002%s\002 Version: \002%s\002 Author: \002%s\002 loaded: \002%s\002"), m->name.c_str(), !m->version.empty() ? m->version.c_str() : "?", !m->author.empty() ? m->author.c_str() : "Unknown", Anope::strftime(m->created).c_str()); + source.Reply(_("Module: \002%s\002 Version: \002%s\002 Author: \002%s\002 Loaded: \002%s\002"), m->name.c_str(), !m->version.empty() ? m->version.c_str() : "?", !m->author.empty() ? m->author.c_str() : "Unknown", Anope::strftime(m->created).c_str()); if (Anope::Debug) source.Reply(_(" Loaded at: %p"), m->handle); |