mpv, mpv-test: Fix vim mode lines

This commit is contained in:
jaseg 2017-08-06 22:28:01 +02:00
parent 2eeddcda05
commit 13191bfeb9
2 changed files with 3 additions and 2 deletions

View file

@ -1,4 +1,6 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# -*- coding: utf-8 -*-
# vim: ts=4 sw=4 et
import unittest import unittest
from unittest import mock from unittest import mock

3
mpv.py
View file

@ -1,4 +1,5 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# vim: ts=4 sw=4 et
# #
# Python MPV library module # Python MPV library module
# Copyright (C) 2017 Sebastian Götte <code@jaseg.net> # Copyright (C) 2017 Sebastian Götte <code@jaseg.net>
@ -28,8 +29,6 @@ import collections
import re import re
import traceback import traceback
# vim: ts=4 sw=4 et
if os.name == 'nt': if os.name == 'nt':
backend = CDLL('mpv-1.dll') backend = CDLL('mpv-1.dll')
fs_enc = 'utf-8' fs_enc = 'utf-8'