Repository: libcloud Updated Branches: refs/heads/trunk c377c40e0 -> 0189b6cd8
delete useless unreachable except block Closes #1063 Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/0189b6cd Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/0189b6cd Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/0189b6cd Branch: refs/heads/trunk Commit: 0189b6cd87355d3be5c80791c12e3d77923a5374 Parents: c377c40 Author: jhelie <[email protected]> Authored: Fri May 26 12:03:35 2017 +0100 Committer: Anthony Shaw <[email protected]> Committed: Sun Jun 18 12:29:40 2017 +1000 ---------------------------------------------------------------------- libcloud/compute/drivers/gce.py | 2 -- 1 file changed, 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/0189b6cd/libcloud/compute/drivers/gce.py ---------------------------------------------------------------------- diff --git a/libcloud/compute/drivers/gce.py b/libcloud/compute/drivers/gce.py index 41eef06..aa47917 100644 --- a/libcloud/compute/drivers/gce.py +++ b/libcloud/compute/drivers/gce.py @@ -7915,8 +7915,6 @@ class GCENodeDriver(NodeDriver): error = e.value code = e.code response = {'status': 'DONE'} - except ResourceNotFoundError: - return if response['status'] == 'DONE': status['node_response'] = None if error:
