From 43280dd704f7628d8c28efb84ff6c96e8dba94c0 Mon Sep 17 00:00:00 2001 From: John-Michael Mulesa Date: Mon, 20 Nov 2023 08:36:32 -0800 Subject: [PATCH] Unicode is still giving us trouble in parts of WinPE. PiperOrigin-RevId: 584035790 --- glazier/lib/title.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glazier/lib/title.py b/glazier/lib/title.py index e52e986a..f2875c36 100644 --- a/glazier/lib/title.py +++ b/glazier/lib/title.py @@ -68,7 +68,7 @@ def _base_title() -> Optional[str]: if getid: base.append(getid) if os.path.exists(seed): - base.append('USB ✅') + base.append('USB removal OK') # Convert list to a string, using map() to account for nonetypes return ' - '.join(map(str, base))