From 20330f031f259e583cfe8ff40ec21731e4a96baf Mon Sep 17 00:00:00 2001 From: Gremious Date: Tue, 31 Oct 2023 15:21:11 +0000 Subject: [PATCH] fix typo in wallpaper.py --- pywal/wallpaper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pywal/wallpaper.py b/pywal/wallpaper.py index 77fe8a2..7be0733 100644 --- a/pywal/wallpaper.py +++ b/pywal/wallpaper.py @@ -175,7 +175,7 @@ def set_win_wallpaper(img): if "x86" in os.environ["PROGRAMFILES"]: ctypes.windll.user32.SystemParametersInfoW(20, 0, img, 3) else: - # 'W' funcitons take uniqcode strings, + # 'W' funcitons take Unicode strings, # while 'A' functions take UTF-8 bytestrings. # (Python 3 strings are Unicode by default.) ctypes.windll.user32.SystemParametersInfoA(20, 0, str.encode(img), 3)