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
1 changed files with 2 additions and 2 deletions

4
mpv.py
View File

@ -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):