From: Urban Wallasch Date: Sun, 9 May 2021 16:50:16 +0000 (+0200) Subject: * Partial revert of previous commit (dropped 'disown'). X-Git-Tag: v0.3~102 X-Git-Url: https://git.packet-gain.de/?a=commitdiff_plain;h=244ca26217617ca15e7b3239ddef74706cb04cf4;p=ffpreview.git * Partial revert of previous commit (dropped 'disown'). --- diff --git a/ffpreview.py b/ffpreview.py index 169b5ed..9b30d70 100755 --- a/ffpreview.py +++ b/ffpreview.py @@ -626,7 +626,7 @@ def play_video(filename, start='0', paused=False): cmd = cmd.replace('%t', '"' + start + '"') cmd = cmd.replace('%f', '"' + filename + '"') eprint(cmd) - Popen('exec ' + cmd + ' & disown', shell=True, start_new_session=True) + Popen('exec ' + cmd, shell=True, start_new_session=True) # check validity of existing index file def chk_idxfile():