use ImportError for python 3.5 compatibility
This commit is contained in:
parent
33c8e34456
commit
85c7a05978
@ -484,7 +484,7 @@ class SdrDeviceDescription(object):
|
|||||||
module = __import__("owrx.source.{0}".format(sdr_type), fromlist=[className])
|
module = __import__("owrx.source.{0}".format(sdr_type), fromlist=[className])
|
||||||
cls = getattr(module, className)
|
cls = getattr(module, className)
|
||||||
return cls()
|
return cls()
|
||||||
except (ModuleNotFoundError, AttributeError):
|
except (ImportError, AttributeError):
|
||||||
raise SdrDeviceDescriptionMissing("Device description for type {} not available".format(sdr_type))
|
raise SdrDeviceDescriptionMissing("Device description for type {} not available".format(sdr_type))
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
Loading…
Reference in New Issue
Block a user