aboutsummaryrefslogtreecommitdiff
path: root/modules/dns.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/dns.py')
-rw-r--r--modules/dns.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/dns.py b/modules/dns.py
index 95c1b80c..2935e1bf 100644
--- a/modules/dns.py
+++ b/modules/dns.py
@@ -5,7 +5,8 @@ class Module(object):
def __init__(self, bot):
bot.events.on("received").on("command").on("dns").hook(
self.dns, min_args=1,
- help="Get all addresses for a given hostname (IPv4/IPv6)")
+ help="Get all addresses for a given hostname (IPv4/IPv6)",
+ usage="<hostname>")
def dns(self, event):
hostname = event["args_split"][0]