summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Larson <mike@vyatta.com>2011-02-02 12:04:27 -0800
committerMichael Larson <mike@vyatta.com>2011-02-02 12:04:27 -0800
commiteae4990af17bf998731bf30c9d9f7f53d14bbbaf (patch)
tree136af2d4be8f99add362a9b589c4eec58e8e2719
parent504d9a97def87f4eff15307a272795e70c2a915a (diff)
downloadvyatta-cfg-eae4990af17bf998731bf30c9d9f7f53d14bbbaf.tar.gz
vyatta-cfg-eae4990af17bf998731bf30c9d9f7f53d14bbbaf.zip
cosmetic fix to make error output to match format of other error output statements.
-rwxr-xr-xlib/Vyatta/Config.pm2
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";
}