X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMoose-Policy.git;a=blobdiff_plain;f=lib%2FMoose%2FPolicy.pm;h=14bdb668e85c6fb45a4db97aba0220237ac0a9b2;hp=f3110f8b6404ca6394d9780dc88a9f0be312e8d3;hb=cdaa4ee1af431df08155781b9d2f16d3fc872b06;hpb=30f6f159e9ea67aeb7f8884febb88d0330a7cef7 diff --git a/lib/Moose/Policy.pm b/lib/Moose/Policy.pm index f3110f8..14bdb66 100644 --- a/lib/Moose/Policy.pm +++ b/lib/Moose/Policy.pm @@ -1,7 +1,7 @@ package Moose::Policy; use Moose 'confess', 'blessed'; -our $VERSION = '0.03'; +our $VERSION = '0.04'; our $AUTHORITY = 'cpan:STEVAN'; sub import { @@ -13,7 +13,7 @@ sub import { # otherwise require it ... eval { Class::MOP::load_class($policy) }; confess "Could not load policy module '$policy' because : $@" - if $@; + if $@; } my $package = caller();