summaryrefslogtreecommitdiff
path: root/src/migration-scripts/https/5-to-6
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2026-06-16 20:24:44 +0200
committerChristian Breunig <christian@breunig.cc>2026-06-16 20:24:44 +0200
commitfa853ed8f25b5b9bf396d6e819b2c6259e7f5f42 (patch)
tree9ee5a9c573512f393384d5adc9211457915a3bac /src/migration-scripts/https/5-to-6
parent4fb32bc179127691f40c8e93c55877aa76f10416 (diff)
downloadvyos-1x-fa853ed8f25b5b9bf396d6e819b2c6259e7f5f42.tar.gz
vyos-1x-fa853ed8f25b5b9bf396d6e819b2c6259e7f5f42.zip
T8923: normalize "can not" to "cannot"
Replace two-word "can not" / "Can not" with "cannot" across comments, ConfigError messages, CLI help text, and op-mode output. Standard SNMP MIB files under mibs/ are left unchanged.
Diffstat (limited to 'src/migration-scripts/https/5-to-6')
-rw-r--r--src/migration-scripts/https/5-to-62
1 files changed, 1 insertions, 1 deletions
diff --git a/src/migration-scripts/https/5-to-6 b/src/migration-scripts/https/5-to-6
index f51b35972..8c41f4b61 100644
--- a/src/migration-scripts/https/5-to-6
+++ b/src/migration-scripts/https/5-to-6
@@ -41,7 +41,7 @@ def migrate(config: ConfigTree) -> None:
# Set default certname based on domain-name
cert_name = 'https-' + domain_names[0].split('.')[0]
# Overwrite certname from previous certbot calls if available
- # We can not use python code like os.scandir due to filesystem permissions.
+ # We cannot use python code like os.scandir due to filesystem permissions.
# This must be run as root
certbot_live = f'{vyos_certbot_dir}/live/' # we need the trailing /
if os.path.exists(certbot_live):