summaryrefslogtreecommitdiff
path: root/mpv.py
diff options
context:
space:
mode:
Diffstat (limited to 'mpv.py')
-rw-r--r--mpv.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mpv.py b/mpv.py
index 226f08c..eb30052 100644
--- a/mpv.py
+++ b/mpv.py
@@ -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):