From b6d2b514d58eaea4c28a547183fe7c1e73595ef7 Mon Sep 17 00:00:00 2001 From: Frechdachs Date: Fri, 12 Aug 2016 23:09:18 +0200 Subject: Fix spaces/tabs inconsistency Since https://github.com/jaseg/python-mpv/commit/230f0078fe2dd9edfeb2082516b15689c1c04e94 python throws a TabError exception. --- mpv.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mpv.py') 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): -- cgit