Fixing typo in keep_playlist causing NameError
This commit is contained in:
parent
d1f304ab92
commit
035e1db1db
1 changed files with 1 additions and 1 deletions
2
mpv.py
2
mpv.py
|
|
@ -1186,7 +1186,7 @@ class MPV(object):
|
||||||
|
|
||||||
def stop(self, keep_playlist=False):
|
def stop(self, keep_playlist=False):
|
||||||
"""Mapped mpv stop command, see man mpv(1)."""
|
"""Mapped mpv stop command, see man mpv(1)."""
|
||||||
if keep_playist:
|
if keep_playlist:
|
||||||
self.command('stop', 'keep-playlist')
|
self.command('stop', 'keep-playlist')
|
||||||
else:
|
else:
|
||||||
self.command('stop')
|
self.command('stop')
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue