postinstall: typo in maximum win hostname error

s/nor/not
master
OpenGnSys Support Team 2024-08-06 17:30:19 +02:00
parent fd64b84bcc
commit 16251d42d3
1 changed files with 1 additions and 1 deletions

View File

@ -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)