diff options
author | Frechdachs <frechdachs@rekt.cc> | 2016-08-12 23:09:18 +0200 |
---|---|---|
committer | Frechdachs <frechdachs@rekt.cc> | 2016-08-12 23:09:18 +0200 |
commit | b6d2b514d58eaea4c28a547183fe7c1e73595ef7 (patch) | |
tree | 280840359a9be8074b0fc78a9e78e9ab6df9e332 /mpv.py | |
parent | 230f0078fe2dd9edfeb2082516b15689c1c04e94 (diff) | |
download | python-mpv-b6d2b514d58eaea4c28a547183fe7c1e73595ef7.tar.gz python-mpv-b6d2b514d58eaea4c28a547183fe7c1e73595ef7.tar.bz2 python-mpv-b6d2b514d58eaea4c28a547183fe7c1e73595ef7.zip |
Fix spaces/tabs inconsistency
Since https://github.com/jaseg/python-mpv/commit/230f0078fe2dd9edfeb2082516b15689c1c04e94 python throws a TabError exception.
Diffstat (limited to 'mpv.py')
-rw-r--r-- | mpv.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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): |