Fix spaces/tabs inconsistency

Since 230f0078fe python throws a TabError exception.
This commit is contained in:
Frechdachs 2016-08-12 23:09:18 +02:00
parent 230f0078fe
commit b6d2b514d5

4
mpv.py
View file

@ -11,10 +11,10 @@ from functools import partial
if os.name == 'nt': if os.name == 'nt':
backend = CDLL(ctypes.util.find_library('mpv-1.dll')) backend = CDLL(ctypes.util.find_library('mpv-1.dll'))
fs_enc = 'utf-8' fs_enc = 'utf-8'
else: else:
backend = CDLL(ctypes.util.find_library('mpv')) backend = CDLL(ctypes.util.find_library('mpv'))
fs_enc = sys.getfilesystemencoding() fs_enc = sys.getfilesystemencoding()
class MpvHandle(c_void_p): class MpvHandle(c_void_p):