don't fails when farsight isn't available
This commit is contained in:
parent
e1caf30e28
commit
25be68953d
1 changed files with 4 additions and 1 deletions
|
@ -72,7 +72,10 @@ class JingleTransport(object):
|
||||||
return []
|
return []
|
||||||
|
|
||||||
|
|
||||||
import farsight
|
try:
|
||||||
|
import farsight
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
class JingleTransportICEUDP(JingleTransport):
|
class JingleTransportICEUDP(JingleTransport):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
|
Loading…
Add table
Reference in a new issue