From e1d742ee5fee2b5ef896509ef6b55c2d0d9907e4 Mon Sep 17 00:00:00 2001 From: GLolol Date: Mon, 24 Mar 2014 23:02:55 -0700 Subject: [PATCH] SysDNS: clarify the plugin descriptions --- README.md | 3 +++ SysDNS/README.txt | 3 ++- SysDNS/plugin.py | 5 +++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1ddd152..e78a08f 100644 --- a/README.md +++ b/README.md @@ -25,3 +25,6 @@ Any specific plugin dependencies *should* also be listed. ##### SupyMisc - Some assorted commands that don't seem to fit anywhere else. + +##### SysDNS +- An alternative to Supybot's built-in DNS function, using DNS lookup utilities (such as host or dig) available on the host machine. diff --git a/SysDNS/README.txt b/SysDNS/README.txt index 74f01d6..b78f886 100644 --- a/SysDNS/README.txt +++ b/SysDNS/README.txt @@ -1 +1,2 @@ -This plugin provides an alternative to Supybot's built in dns command, using a 'host' binary (such as /usr/bin/host) available on the bot's host system. \ No newline at end of file +An alternative to Supybot's built-in DNS function, using DNS lookup utilities (such as host or dig) available on the host machine. + diff --git a/SysDNS/plugin.py b/SysDNS/plugin.py index d845794..5c891d7 100644 --- a/SysDNS/plugin.py +++ b/SysDNS/plugin.py @@ -44,8 +44,9 @@ except ImportError: _ = lambda x:x class SysDNS(callbacks.Plugin): - """Provides an alternative to the built in dns command by looking up hostnames - using the host binary available on the system.""" + """An alternative to Supybot's built-in DNS function, using DNS lookup utilities + (such as host or dig) available on the host machine. + """ threaded = True def dns(self, irc, msg, args, text): """