diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-10-18 15:27:55 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-10-18 15:27:55 +0000 |
commit | 45985625f4745341970093f2924b19747a3bebb6 (patch) | |
tree | 70235d842452b03bbac326159ba969890b6f7f9b /common | |
parent | 85d7b983dc65a9a4328ee0136222f085a999cdc9 (diff) | |
download | drakwizard-45985625f4745341970093f2924b19747a3bebb6.tar drakwizard-45985625f4745341970093f2924b19747a3bebb6.tar.gz drakwizard-45985625f4745341970093f2924b19747a3bebb6.tar.bz2 drakwizard-45985625f4745341970093f2924b19747a3bebb6.tar.xz drakwizard-45985625f4745341970093f2924b19747a3bebb6.zip |
(commit) further simplify
Diffstat (limited to 'common')
-rw-r--r-- | common/Varspaceval.pm | 2 |
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"; } } |