Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'upstream/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
gertjanol committed Oct 15, 2012
2 parents e67a1b7 + 9a18660 commit eca1169
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion boto/rds/__init__.py
Expand Up @@ -80,7 +80,7 @@ def connect_to_region(region_name, **kw_params):
class RDSConnection(AWSQueryConnection):

DefaultRegionName = 'us-east-1'
DefaultRegionEndpoint = 'rds.us-east-1.amazonaws.com'
DefaultRegionEndpoint = 'rds.amazonaws.com'
APIVersion = '2012-09-17'

def __init__(self, aws_access_key_id=None, aws_secret_access_key=None,
Expand Down
2 changes: 2 additions & 0 deletions boto/route53/record.py
Expand Up @@ -264,6 +264,8 @@ def to_print(self):

if self.identifier != None and self.weight != None:
rr += ' (WRR id=%s, w=%s)' % (self.identifier, self.weight)
elif self.identifier != None and self.region != None:
rr += ' (LBR id=%s, region=%s)' % (self.identifier, self.region)

return rr

Expand Down
8 changes: 7 additions & 1 deletion setup.py
Expand Up @@ -23,6 +23,8 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.

from __future__ import with_statement

try:
from setuptools import setup
extra = dict(test_suite="tests.test.suite", include_package_data=True)
Expand All @@ -39,10 +41,14 @@
print >> sys.stderr, error
sys.exit(1)

def readme():
with open("README.rst") as f:
return f.read()

setup(name = "boto",
version = __version__,
description = "Amazon Web Services Library",
long_description = open("README.rst").read(),
long_description = readme(),
author = "Mitch Garnaat",
author_email = "mitch@garnaat.com",
scripts = ["bin/sdbadmin", "bin/elbadmin", "bin/cfadmin",
Expand Down

0 comments on commit eca1169

Please sign in to comment.