aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Plugin/Topic.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Plugin/Topic.pm b/Plugin/Topic.pm
index ce3c782..6533d61 100644
--- a/Plugin/Topic.pm
+++ b/Plugin/Topic.pm
@@ -23,7 +23,7 @@ sub topic {
my $channel = @arguments ? $arguments[0] : $where;
return "Syntax: topic [channel]" unless $channel =~ m/^#.*$/;
- my $topic = $channel_topics{$channel} || "(no topic)";
+ my $topic = $channel_topics{$channel} || "(unknown)";
return "Topic for $channel: $topic";
}