diff options
author | Michael Larson <slioch@slioch.vyatta.com> | 2010-08-16 12:03:58 -0700 |
---|---|---|
committer | Michael Larson <slioch@slioch.vyatta.com> | 2010-08-16 12:03:58 -0700 |
commit | 4935b31eb6b6c755f7ce3e0102a60996c1b1d633 (patch) | |
tree | 547da282aae45883d6830b284cf512a1de6afc20 /lib | |
parent | bb3bceff094d4889911b425a30b6e1bce20a918f (diff) | |
download | vyatta-cfg-4935b31eb6b6c755f7ce3e0102a60996c1b1d633.tar.gz vyatta-cfg-4935b31eb6b6c755f7ce3e0102a60996c1b1d633.zip |
fixed spaces in migrations scripts are unable to handle variable white space on a key/value line. These scripts will need to be
fixed in mendocino.
Revert "adjusting spacing for new deactivate/activation notation in show/config output."
This reverts commit 5af23764d454808a7021a661118eae104c22b9df.
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/Vyatta/ConfigOutput.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Vyatta/ConfigOutput.pm b/lib/Vyatta/ConfigOutput.pm index 1218a8d..e01afcd 100755 --- a/lib/Vyatta/ConfigOutput.pm +++ b/lib/Vyatta/ConfigOutput.pm @@ -225,7 +225,7 @@ sub displayDeletedOrigChildren { } } else { - $dis = ' '; + $dis = ''; } } @@ -273,7 +273,7 @@ sub displayDeletedOrigChildren { } } else { - $dis = ' '; + $dis = ''; } print "$dis$dprefix$prefix$child $cname {\n"; @@ -350,7 +350,7 @@ sub displayChildren { } } else { - $dis = ' '; + $dis = ''; } } @@ -405,7 +405,7 @@ sub displayChildren { } } else { - $dis = ' '; + $dis = ''; } my $tdiff = ' '; |