summaryrefslogtreecommitdiff
path: root/src/helpers
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@vyos.io>2026-06-29 15:58:23 +0100
committerGitHub <noreply@github.com>2026-06-29 15:58:23 +0100
commit772ccb06548fb1a65d8623ea545facb0bcabb97c (patch)
tree1b0c279456eeae262fa5815cff7045523bc4c166 /src/helpers
parent4a888ac808c29323d3adb3862d908e7cb2bfc592 (diff)
parent094928ba02bbabf3807ebe8f5ae77b957435d288 (diff)
downloadvyos-1x-772ccb06548fb1a65d8623ea545facb0bcabb97c.tar.gz
vyos-1x-772ccb06548fb1a65d8623ea545facb0bcabb97c.zip
Merge pull request #5298 from vyos/ci/T8490-typos-vyos-1x
ci: T8490: fix typos in comments, strings, and local identifiers
Diffstat (limited to 'src/helpers')
-rwxr-xr-xsrc/helpers/run-config-migration.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/helpers/run-config-migration.py b/src/helpers/run-config-migration.py
index 6a3533644..6329d2979 100755
--- a/src/helpers/run-config-migration.py
+++ b/src/helpers/run-config-migration.py
@@ -47,13 +47,13 @@ if not os.access(config_file, os.R_OK):
if out_file is None:
if not os.access(config_file, os.W_OK):
- print(f"Config file '{config_file}' not writeable")
+ print(f"Config file '{config_file}' not writable")
sys.exit(1)
else:
try:
open(out_file, 'w').close()
except OSError:
- print(f"Output file '{out_file}' not writeable")
+ print(f"Output file '{out_file}' not writable")
sys.exit(1)
config_migrate = ConfigMigrate(config_file, force=force, output_file=out_file)