Fix spaces/tabs inconsistency
Since 230f0078fe
python throws a TabError exception.
This commit is contained in:
parent
230f0078fe
commit
b6d2b514d5
1 changed files with 2 additions and 2 deletions
4
mpv.py
4
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):
|
||||
|
|
Loading…
Reference in a new issue