fix spawnlp usage
This commit is contained in:
parent
7004c1d669
commit
9da22142be
1 changed files with 1 additions and 1 deletions
|
|
@ -66,7 +66,7 @@ class VideoPlayer():
|
||||||
"""
|
"""
|
||||||
player_name = self.get_player_name()
|
player_name = self.get_player_name()
|
||||||
print 'Invoking "%s %s".' % (player_name, video.url)
|
print 'Invoking "%s %s".' % (player_name, video.url)
|
||||||
os.spawnlp(os.P_NOWAIT, player_name, video.url)
|
os.spawnlp(os.P_NOWAIT, player_name, player_name, video.url)
|
||||||
|
|
||||||
def _play_rtmp(self, video):
|
def _play_rtmp(self, video):
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue