Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Fixups #1140

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open

Fixups #1140

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion boto/connection.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -1007,7 +1007,8 @@ def make_request(self, action, params=None, path='/', verb='GET'):
http_request.params['Version'] = self.APIVersion http_request.params['Version'] = self.APIVersion
return self._mexe(http_request) return self._mexe(http_request)


def build_list_params(self, params, items, label): @staticmethod
def build_list_params(params, items, label):
if isinstance(items, basestring): if isinstance(items, basestring):
items = [items] items = [items]
for i in range(1, len(items) + 1): for i in range(1, len(items) + 1):
Expand Down
2 changes: 1 addition & 1 deletion boto/ec2/connection.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -1623,7 +1623,7 @@ def get_all_volumes(self, volume_ids=None, filters=None):
as the value. The set of allowable filter as the value. The set of allowable filter
names/values is dependent on the request names/values is dependent on the request
being performed. Check the EC2 API guide being performed. Check the EC2 API guide
for details. for details at http://goo.gl/bYK8w


:rtype: list of :class:`boto.ec2.volume.Volume` :rtype: list of :class:`boto.ec2.volume.Volume`
:return: The requested Volume objects :return: The requested Volume objects
Expand Down