aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/calendar.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2010-03-19 13:10:17 -0400
committerJoey Hess <joey@gnu.kitenet.net>2010-03-19 13:12:28 -0400
commitcbf269eee29a66e1350e5553f38eee5b4683be8a (patch)
tree2b845960c7f6c32e5682fd6a9979e0efd87420ca /IkiWiki/Plugin/calendar.pm
parentdddd6aa99055d8505f73e39b12f049633d9cb4c3 (diff)
downloadikiwiki-cbf269eee29a66e1350e5553f38eee5b4683be8a.tar
ikiwiki-cbf269eee29a66e1350e5553f38eee5b4683be8a.tar.gz
audited use POSIX
The POSIX perl module exports a huge number of functions by default, so make sure all imports are qualified. (And remove one that was not necessary.)
Diffstat (limited to 'IkiWiki/Plugin/calendar.pm')
-rw-r--r--IkiWiki/Plugin/calendar.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/calendar.pm b/IkiWiki/Plugin/calendar.pm
index aaee2c610..ff84bc440 100644
--- a/IkiWiki/Plugin/calendar.pm
+++ b/IkiWiki/Plugin/calendar.pm
@@ -22,7 +22,7 @@ use warnings;
use strict;
use IkiWiki 3.00;
use Time::Local;
-use POSIX;
+use POSIX ();
my $time=time;
my @now=localtime($time);