Skip Menu |

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

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

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

Bug Information
Severity: Normal
Broken in: (no value)
Fixed in: (no value)



Subject: Colon format can't handle quotes
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); on this file: foo:"xyzzy plugh" It prints: $VAR1 = { 'foo' => [ '"xyzzy', 'plugh"' ] }; It would be more useful to print: $VAR1 = { 'foo' => 'xyzzy plugh' };