Catch all exceptions when testing Farstream

This commit is contained in:
Philipp Hörist 2018-03-17 12:20:21 +01:00
parent d8777a78aa
commit 52c06cd64f
1 changed files with 2 additions and 1 deletions

View File

@ -228,7 +228,8 @@ try:
session = conference.new_session(Farstream.MediaType.AUDIO)
del session
del conference
except GLib.GError:
except Exception as e:
glog.info(e)
HAVE_FARSTREAM = False
except (ImportError, ValueError):