diff options
author | Michael Larson <mike@vyatta.com> | 2011-02-02 12:04:27 -0800 |
---|---|---|
committer | Michael Larson <mike@vyatta.com> | 2011-02-02 12:04:27 -0800 |
commit | eae4990af17bf998731bf30c9d9f7f53d14bbbaf (patch) | |
tree | 136af2d4be8f99add362a9b589c4eec58e8e2719 | |
parent | 504d9a97def87f4eff15307a272795e70c2a915a (diff) | |
download | vyatta-cfg-eae4990af17bf998731bf30c9d9f7f53d14bbbaf.tar.gz vyatta-cfg-eae4990af17bf998731bf30c9d9f7f53d14bbbaf.zip |
cosmetic fix to make error output to match format of other error output statements.
-rwxr-xr-x | lib/Vyatta/Config.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Vyatta/Config.pm b/lib/Vyatta/Config.pm index 187efa0..ea608ff 100755 --- a/lib/Vyatta/Config.pm +++ b/lib/Vyatta/Config.pm @@ -700,7 +700,7 @@ sub compareValueLists { sub outputError { my ($location,$msg) = @_; - print STDERR "_errloc_:[" . join(" ",@{$location}) . "]\n"; + print STDERR "_errloc_:[ " . join(" ",@{$location}) . " ]\n"; print STDERR $msg . "\n\n"; } |