diff options
| author | Christian Breunig <christian@breunig.cc> | 2026-06-16 20:24:44 +0200 |
|---|---|---|
| committer | Christian Breunig <christian@breunig.cc> | 2026-06-16 20:24:44 +0200 |
| commit | fa853ed8f25b5b9bf396d6e819b2c6259e7f5f42 (patch) | |
| tree | 9ee5a9c573512f393384d5adc9211457915a3bac /src/op_mode/container.py | |
| parent | 4fb32bc179127691f40c8e93c55877aa76f10416 (diff) | |
| download | vyos-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/op_mode/container.py')
| -rwxr-xr-x | src/op_mode/container.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/op_mode/container.py b/src/op_mode/container.py index e0753f1be..81dc35098 100755 --- a/src/op_mode/container.py +++ b/src/op_mode/container.py @@ -107,7 +107,7 @@ def delete_image(name: str, force: typing.Optional[bool] = False): if name == 'all': # gather list of all images and pass them to the removal list name = cmd('sudo podman image ls --quiet') - # If there are no container images left, we can not delete them all + # If there are no container images left, we cannot delete them all if not name: return # replace newline with whitespace name = name.replace('\n', ' ') |
