summaryrefslogtreecommitdiff
path: root/mpv.py
diff options
context:
space:
mode:
authorFrechdachs <frechdachs@rekt.cc>2016-08-12 23:09:18 +0200
committerFrechdachs <frechdachs@rekt.cc>2016-08-12 23:09:18 +0200
commitb6d2b514d58eaea4c28a547183fe7c1e73595ef7 (patch)
tree280840359a9be8074b0fc78a9e78e9ab6df9e332 /mpv.py
parent230f0078fe2dd9edfeb2082516b15689c1c04e94 (diff)
downloadpython-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.py4
1 files changed, 2 insertions, 2 deletions
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):