Skip to content

Commit

Permalink
Fixed a bug with doubling up the path specifier for euca requests.
Browse files Browse the repository at this point in the history
  • Loading branch information
garnaat committed Apr 1, 2011
1 parent 63178ac commit 1ea348b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions boto/roboto/awsqueryrequest.py
Expand Up @@ -228,7 +228,7 @@ def send(self, verb='GET'):
conn = self.get_connection(**self.args)
self.http_response = conn.make_request(self.name(),
self.request_params,
conn.path, verb)
verb=verb)
self.body = self.http_response.read()
boto.log.debug(self.body)
if self.http_response.status == 200:
Expand Down Expand Up @@ -330,7 +330,6 @@ def do_cli(self, cli_args=None):
if os.path.isfile(path):
fp = open(path)
value = fp.read()
print value
fp.close()
else:
self.parser.error('Unable to read file: %s' % path)
Expand Down

0 comments on commit 1ea348b

Please sign in to comment.