in reply to Strange problem with Config::General

Are you running the exact same code in both cases?. Your output looks like you called $conf->getall in scalar context before assigning the result to %config. Something roughly like : my %config = scalar $cong->getall;, except the problem is probably far less obvious. But then you should have two warnings if they are on:

Odd number of elements in hash assignment at - line X. Use of uninitialized value in print at - line X.

Replies are listed 'Best First'.
Re^2: Strange problem with Config::General
by OfficeLinebacker (Chaplain) on Nov 18, 2013 at 16:04 UTC
    Hi. Yes I have warnings on and the code is identical. Thanks.

      With warnings activated there should have been at least the second one(and I don't see how the first could have been skipped). Are there other warnings you did not see or forgot to tell us about?