aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Pipkin <d4wnr4z0r@yahoo.com>2012-05-13 19:22:21 -0500
committerJacob Pipkin <d4wnr4z0r@yahoo.com>2012-05-13 19:22:21 -0500
commit09317aac6eb0c0e2fa6c7304b112c0c9e77fae3b (patch)
tree9d6e575b39a732212dd60d146517e2174812a409
parent4a12c1a1629ec18db06583ad0ac503e3c1e34605 (diff)
downloadsbotools2-09317aac6eb0c0e2fa6c7304b112c0c9e77fae3b.tar.xz
bugfix to sboconfig -l sorting stuff
-rwxr-xr-xsboconfig2
1 files changed, 1 insertions, 1 deletions
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";
}
}