diff options
Diffstat (limited to 'common/Varspaceval.pm')
-rw-r--r-- | common/Varspaceval.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/common/Varspaceval.pm b/common/Varspaceval.pm index 4df1e675..bb6ba6cc 100644 --- a/common/Varspaceval.pm +++ b/common/Varspaceval.pm @@ -59,10 +59,10 @@ sub commit { my $out_val = $pre . $key . $eq . $val . $rest; $output .= defined $val ? $out_val . "\n" : $out_val; } - #appending added parameters - foreach (keys %$hash) { - $output .= $_ . " " . $hash->{$_} . "\n"; - } + #appending added parameters + foreach (keys %$hash) { + $output .= $_ . " " . $hash->{$_} . "\n"; + } } else { #the file does not exist print STDERR "File $file will be created\n"; |