mirror of
https://github.com/munki/munki.git
synced 2026-01-06 06:29:56 -06:00
Better handling of manifest names that include Unicode characters, including handling --id from managedsoftwareupdate at the command-line.
This commit is contained in:
@@ -739,7 +739,8 @@ def main():
|
||||
updatecheckresult = None
|
||||
if not skip_munki_check:
|
||||
try:
|
||||
updatecheckresult = updatecheck.check(client_id=options.id)
|
||||
updatecheckresult = updatecheck.check(
|
||||
client_id=options.id.decode('UTF-8'))
|
||||
except:
|
||||
munkicommon.display_error('Unexpected error in updatecheck:')
|
||||
munkicommon.log(traceback.format_exc())
|
||||
|
||||
Reference in New Issue
Block a user