Skip to content
Snippets Groups Projects
Commit 25be6895 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

don't fails when farsight isn't available

parent e1caf30e
No related branches found
No related tags found
No related merge requests found
......@@ -72,7 +72,10 @@ class JingleTransport(object):
return []
import farsight
try:
import farsight
except Exception:
pass
class JingleTransportICEUDP(JingleTransport):
def __init__(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment