]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/tag.pm
* Allow disabling of plugins included in goodstuff.
[ikiwiki.git] / IkiWiki / Plugin / tag.pm
index 6d22c49fd441183f420878884b072c686d5d1dc3..ddb67c2a8b5ad52f24c76cd1ff512c27466232e4 100644 (file)
@@ -16,6 +16,7 @@ sub import { #{{{
 
 sub getopt () { #{{{
        eval q{use Getopt::Long};
+       error($@) if $@;
        Getopt::Long::Configure('pass_through');
        GetOptions("tagbase=s" => \$config{tagbase});
 } #}}}