X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=blobdiff_plain;f=lib%2FConfig%2FAny.pm;h=0a7f7d788aedacf4b2cbbcb8384753829727cd0b;hp=301e006e7887bdeb6ab779343155b6035fb0487d;hb=af9773e254ae71eee4cbdf5ee48d25b17c922b50;hpb=48e4a267ac83f85a46ee54c53052f8831752acac diff --git a/lib/Config/Any.pm b/lib/Config/Any.pm index 301e006..0a7f7d7 100644 --- a/lib/Config/Any.pm +++ b/lib/Config/Any.pm @@ -6,7 +6,7 @@ use warnings; use Carp; use Module::Pluggable::Object (); -our $VERSION = '0.09_02'; +our $VERSION = '0.10'; =head1 NAME @@ -25,7 +25,7 @@ This document describes Config::Any version 0.09_02 my $cfg = Config::Any->load_files({files => \@filepaths, ... }); for (@$cfg) { - my ($filename, $config) = each %$_; + my ($filename, $config) = %$_; $class->config($config); warn "loaded config from file: $filename"; }