Skip to content

Commit

Permalink
Merge LIBCLOUD-712_fix-ec2-sigver into trunk
Browse files Browse the repository at this point in the history
closes apache#712
  • Loading branch information
Allard Hoeve committed May 15, 2015
2 parents 1e3d3cb + 8f2af00 commit 59cfd4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcloud/compute/drivers/ec2.py
Original file line number Diff line number Diff line change
Expand Up @@ -5659,7 +5659,7 @@ def __init__(self, key, secret=None, secure=True, host=None, port=None,
self.region_name = region
self.api_name = details['api_name']
self.country = details['country']
self.signature_version = details.pop('signature_version',
self.signature_version = details.get('signature_version',
DEFAULT_SIGNATURE_VERSION)

host = host or details['endpoint']
Expand Down

0 comments on commit 59cfd4f

Please sign in to comment.