summaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/postinstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/postinstall.py b/src/utils/postinstall.py
index a043ae8..c59d497 100644
--- a/src/utils/postinstall.py
+++ b/src/utils/postinstall.py
@@ -26,7 +26,7 @@ def set_windows_hostname(disk, partition, name):
logging.info(f'Setting Windows hostname to {name}')
if len(name) > 15:
- logging.warning(f'Windows does nor permit hostnames that exceed 15 characters. Truncating {name}')
+ logging.warning(f'Windows does not permit hostnames that exceed 15 characters. Truncating {name}')
name = name[0:15]
byte_name = name.encode(WINDOWS_HIVE_ENCODING)