Merge branch 'cc-5709-airtime-analyzer-cloud-storage' into cc-5709-airtime-analyzer-cloud-storage-saas
This commit is contained in:
commit
90ff323d1d
|
@ -75,10 +75,10 @@ class CloudStorageDownloader:
|
||||||
try:
|
try:
|
||||||
config.readfp(open(config_path))
|
config.readfp(open(config_path))
|
||||||
except IOError as e:
|
except IOError as e:
|
||||||
print "Failed to open config file at " + config_path + ": " + e.strerror
|
logging.debug("Failed to open config file at %s: %s" % (config_path, e.strerror))
|
||||||
sys.exit()
|
sys.exit()
|
||||||
except Exception:
|
except Exception:
|
||||||
print e.strerror
|
logging.debug(e.strerror)
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
|
||||||
return config
|
return config
|
||||||
|
|
Loading…
Reference in New Issue