summaryrefslogtreecommitdiff
path: root/src/migration-scripts/pptp
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2023-08-02 16:54:38 +0200
committerGitHub <noreply@github.com>2023-08-02 16:54:38 +0200
commit34f03461390c85ff5f62481d53fb8e6bc156a208 (patch)
tree713191df322033d8f528da97db4cdad5cfe29bc6 /src/migration-scripts/pptp
parentf8cc7f8ee7c87bd95198dfe6c28c966e840ab571 (diff)
parentd1923b7b58795f0d9635ae0e8df110f591881bdf (diff)
downloadvyos-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/pptp')
-rwxr-xr-xsrc/migration-scripts/pptp/0-to-12
-rwxr-xr-xsrc/migration-scripts/pptp/1-to-22
2 files changed, 2 insertions, 2 deletions
diff --git a/src/migration-scripts/pptp/0-to-1 b/src/migration-scripts/pptp/0-to-1
index d0c7a83b5..1b7697c11 100755
--- a/src/migration-scripts/pptp/0-to-1
+++ b/src/migration-scripts/pptp/0-to-1
@@ -8,7 +8,7 @@ import sys
from vyos.configtree import ConfigTree
-if (len(sys.argv) < 1):
+if len(sys.argv) < 2:
print("Must specify file name!")
sys.exit(1)
diff --git a/src/migration-scripts/pptp/1-to-2 b/src/migration-scripts/pptp/1-to-2
index a13cc3a4f..99624dceb 100755
--- a/src/migration-scripts/pptp/1-to-2
+++ b/src/migration-scripts/pptp/1-to-2
@@ -21,7 +21,7 @@ from sys import argv, exit
from vyos.configtree import ConfigTree
-if (len(argv) < 1):
+if len(argv) < 2:
print("Must specify file name!")
exit(1)