diff options
| author | 2013-10-23 17:40:15 +0000 | |
|---|---|---|
| committer | 2013-10-23 17:40:15 +0000 | |
| commit | bbb625fbd7ee5ebb2e3e2564b3c7117f08200e7d (patch) | |
| tree | 8ab67260025801c3d6fec83b30b61e8ae8332337 /modules/inspect.pl | |
| parent | 5239387031d9426a2001187789d4ae6a87dbd966 (diff) | |
all sorts of stuff changed. This is just one big code package update
Diffstat (limited to 'modules/inspect.pl')
| -rw-r--r-- | modules/inspect.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/inspect.pl b/modules/inspect.pl index 4466d69..3b72a3a 100644 --- a/modules/inspect.pl +++ b/modules/inspect.pl @@ -1,6 +1,7 @@ package ASM::Inspect; use warnings; use strict; +use feature qw(say); use Data::Dumper; #use List::Util qw(first); @@ -61,7 +62,7 @@ sub inspect { foreach $id ( keys %dct ) { return unless (ASM::Util->notRestricted($nick, "notrigger")); if (defined($::eline{$nick}) || defined($::eline{lc $event->{user}}) || defined($::eline{lc $event->{host}})) { - print "Deprecated eline found for $nick / $event->{user} / $event->{host} !\n"; + say "Deprecated eline found for $nick / $event->{user} / $event->{host} !"; return; } $xresult = $dct{$id}{xresult}; |
