don't fails when farsight isn't available
This commit is contained in:
parent
e1caf30e28
commit
25be68953d
|
@ -72,7 +72,10 @@ class JingleTransport(object):
|
|||
return []
|
||||
|
||||
|
||||
import farsight
|
||||
try:
|
||||
import farsight
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
class JingleTransportICEUDP(JingleTransport):
|
||||
def __init__(self):
|
||||
|
|
Loading…
Reference in New Issue