Need to start xdg-open in a new process as it does not do that itself - some browsers (Epiphany) can therefore cause Terminator to block until they are exited

This commit is contained in:
Iain Lane 2008-09-08 20:42:26 +01:00
parent fd8ad1bbea
commit aead00463c
1 changed files with 6 additions and 4 deletions

View File

@ -170,10 +170,12 @@ class TerminatorTerm (gtk.VBox):
def openurl (self, url):
dbg ('openurl: viewing %s'%url)
try:
dbg ('openurl: calling xdg-open')
if subprocess.call(["xdg-open", url]) != 0:
dbg ('openurl: xdg-open failed')
raise
try:
dbg ('openurl: calling xdg-open')
subprocess.Popen(["xdg-open", url])
except:
dbg ('openurl: xdg-open failed')
raise
except:
try:
dbg ('openurl: calling url_show')