don't fails when farsight isn't available

This commit is contained in:
Yann Leboulanger 2011-12-17 20:59:15 +01:00
parent e1caf30e28
commit 25be68953d
1 changed files with 4 additions and 1 deletions

View File

@ -72,7 +72,10 @@ class JingleTransport(object):
return []
import farsight
try:
import farsight
except Exception:
pass
class JingleTransportICEUDP(JingleTransport):
def __init__(self):