Skip Menu |

This queue is for tickets about the Config-Auto CPAN distribution.

Report information
The Basics
Id: 59921
Status: new
Priority: 0/
Queue: Config-Auto

People
Owner: Nobody in particular
Requestors: njh [...] bandsman.co.uk
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.29_02
Fixed in: (no value)



Subject: Colon format can't handle spaces
Try this program: #!/usr/bin/perl -wT use strict; use warnings; use diagnostics; use Config::Auto; use Data::Dumper; my $config = Config::Auto::parse; print Dumper($config); With this file: files: a = b And you get an error about an uninitialized variable. Removing the spaces around the equals sign fixes this.