Removed exiting pypo if error occurs during cloud storage downloads

This commit is contained in:
drigato 2014-08-11 12:25:30 -04:00
parent 02ea553f43
commit 6545828dc7
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ class CloudStorageDownloader:
object_name=obj_name)
except ObjectDoesNotExistError:
logging.info("Could not find object: %s" % obj_name)
exit(-1)
logging.info('Downloading: %s to %s' % (cloud_obj.name, dst))
cloud_obj.download(destination_path=dst)