Do not crash if module ioucon is loaded by tests on Windows

pull/187/head
Julien Duponchelle 9 years ago
parent 289b68e5c1
commit f1ab682be9

@ -21,10 +21,14 @@ import socket
import sys import sys
import os import os
import select import select
import fcntl try:
import fcntl
import termios
import tty
except ImportError:
# On windows it's not available but this module can be included by the test suite
pass
import struct import struct
import termios
import tty
import time import time
import argparse import argparse
import traceback import traceback

Loading…
Cancel
Save