diff options
Diffstat (limited to 'mpv.py')
-rw-r--r-- | mpv.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -11,10 +11,10 @@ from functools import partial if os.name == 'nt': backend = CDLL(ctypes.util.find_library('mpv-1.dll')) - fs_enc = 'utf-8' + fs_enc = 'utf-8' else: backend = CDLL(ctypes.util.find_library('mpv')) - fs_enc = sys.getfilesystemencoding() + fs_enc = sys.getfilesystemencoding() class MpvHandle(c_void_p): |