From 09317aac6eb0c0e2fa6c7304b112c0c9e77fae3b Mon Sep 17 00:00:00 2001 From: Jacob Pipkin Date: Sun, 13 May 2012 19:22:21 -0500 Subject: bugfix to sboconfig -l sorting stuff --- sboconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sboconfig b/sboconfig index be17718..af5de7a 100755 --- 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"; } } -- cgit v1.2.3