diff options
author | Jacob Pipkin <d4wnr4z0r@yahoo.com> | 2012-05-13 19:22:21 -0500 |
---|---|---|
committer | Jacob Pipkin <d4wnr4z0r@yahoo.com> | 2012-05-13 19:22:21 -0500 |
commit | 09317aac6eb0c0e2fa6c7304b112c0c9e77fae3b (patch) | |
tree | 9d6e575b39a732212dd60d146517e2174812a409 | |
parent | 4a12c1a1629ec18db06583ad0ac503e3c1e34605 (diff) | |
download | sbotools2-09317aac6eb0c0e2fa6c7304b112c0c9e77fae3b.tar.xz |
bugfix to sboconfig -l sorting stuff
-rwxr-xr-x | sboconfig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"; } } |