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 | |
by Eily (Monsignor) on Nov 18, 2013 at 16:48 UTC |