Fix Python 3.5 compatibility
This commit is contained in:
parent
91067fcbd8
commit
c7a50aec38
2 changed files with 2 additions and 2 deletions
2
mpv.py
2
mpv.py
|
|
@ -1253,7 +1253,7 @@ class MPV(object):
|
|||
"""
|
||||
def register(cb):
|
||||
if name in self._python_streams:
|
||||
raise KeyError(f'Python stream name "{name}" is already registered')
|
||||
raise KeyError('Python stream name "{}" is already registered'.format(name))
|
||||
self._python_streams[name] = (cb, size)
|
||||
def unregister():
|
||||
if name not in self._python_streams or\
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue