]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/googlecalendar.pm
* Change %renderedfiles to store an array of files rendered from a given
[ikiwiki.git] / IkiWiki / Plugin / googlecalendar.pm
index c99563d9591f856ed7e01661534733ea812b206e..dc0df0ad3ff6d523571366b651a8f171e3799698 100644 (file)
@@ -4,12 +4,11 @@ package IkiWiki::Plugin::googlecalendar;
 use warnings;
 use strict;
 use IkiWiki;
-use IPC::Open2;
 
 sub import { #{{{
-       IkiWiki::hook(type => "preprocess", id => "googlecalendar",
+       hook(type => "preprocess", id => "googlecalendar",
                call => \&preprocess);
-       IkiWiki::hook(type => "format", id => "googlecalendar",
+       hook(type => "format", id => "googlecalendar",
                call => \&format);
 } # }}}