commit 09317aac6eb0c0e2fa6c7304b112c0c9e77fae3b
parent 4a12c1a1629ec18db06583ad0ac503e3c1e34605
Author: Jacob Pipkin <d4wnr4z0r@yahoo.com>
Date: Sun, 13 May 2012 19:22:21 -0500
bugfix to sboconfig -l sorting stuff
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sboconfig b/sboconfig
@@ -52,7 +52,7 @@ show_version () and exit (0) if exists $options{v};
if (exists $options{l}) {
my @keys = sort {$a cmp $b} keys %config;
for my $key (@keys) {
- print $config{$key}=$config{$value},"\n";
+ print "$key=$config{$key}\n";
}
}