diff options
author | Christian Breunig <christian@breunig.cc> | 2023-08-02 16:54:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-02 16:54:38 +0200 |
commit | 34f03461390c85ff5f62481d53fb8e6bc156a208 (patch) | |
tree | 713191df322033d8f528da97db4cdad5cfe29bc6 /src/migration-scripts/quagga/8-to-9 | |
parent | f8cc7f8ee7c87bd95198dfe6c28c966e840ab571 (diff) | |
parent | d1923b7b58795f0d9635ae0e8df110f591881bdf (diff) | |
download | vyos-1x-34f03461390c85ff5f62481d53fb8e6bc156a208.tar.gz vyos-1x-34f03461390c85ff5f62481d53fb8e6bc156a208.zip |
Merge pull request #2129 from sever-sever/T5427
T5427: Fix migration script arguments len expects 2 args
Diffstat (limited to 'src/migration-scripts/quagga/8-to-9')
-rwxr-xr-x | src/migration-scripts/quagga/8-to-9 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/migration-scripts/quagga/8-to-9 b/src/migration-scripts/quagga/8-to-9 index 38507bd3d..0f683d5a1 100755 --- a/src/migration-scripts/quagga/8-to-9 +++ b/src/migration-scripts/quagga/8-to-9 @@ -84,7 +84,7 @@ def migrate_route(config, base, path, route_route6): config.rename(vrf_path, 'vrf') -if (len(argv) < 2): +if len(argv) < 2: print("Must specify file name!") exit(1) |