summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-10-18 15:27:55 +0000
committerThierry Vignaud <tv@mageia.org>2012-10-18 15:27:55 +0000
commit45985625f4745341970093f2924b19747a3bebb6 (patch)
tree70235d842452b03bbac326159ba969890b6f7f9b
parent85d7b983dc65a9a4328ee0136222f085a999cdc9 (diff)
downloaddrakwizard-45985625f4745341970093f2924b19747a3bebb6.tar
drakwizard-45985625f4745341970093f2924b19747a3bebb6.tar.gz
drakwizard-45985625f4745341970093f2924b19747a3bebb6.tar.bz2
drakwizard-45985625f4745341970093f2924b19747a3bebb6.tar.xz
drakwizard-45985625f4745341970093f2924b19747a3bebb6.zip
(commit) further simplify
-rw-r--r--common/Varspaceval.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/Varspaceval.pm b/common/Varspaceval.pm
index 3295426c..97d3287b 100644
--- a/common/Varspaceval.pm
+++ b/common/Varspaceval.pm
@@ -68,7 +68,7 @@ sub commit {
print STDERR "File $file will be created\n";
# FIXME: why "=" here but " " just above?
foreach (keys %$hash) {
- $output .= defined $hash->{$_} ? $_ . "=" . $hash->{$_} . "\n" : $_ . "=\n";
+ $output .= $_ . "=" . $hash->{$_} . "\n";
}
}