From 028b5f69cfb96dced398cfdd7fb6b8f3137ea41c Mon Sep 17 00:00:00 2001 From: Andrew Gaul Date: Wed, 13 Aug 2014 18:21:06 -0700 Subject: [PATCH] whitespace --- S3Proxy-compatibility-list.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/S3Proxy-compatibility-list.md b/S3Proxy-compatibility-list.md index f1d117e..ddad14b 100644 --- a/S3Proxy-compatibility-list.md +++ b/S3Proxy-compatibility-list.md @@ -3,7 +3,8 @@ This page lists applications known to have compatibility with S3Proxy and any co * [AWS Java SDK](http://aws.amazon.com/sdk-for-java/) ```java -AmazonS3Client client = new AmazonS3Client(new BasicAWSCredentials("identity", "credential"), config); +AmazonS3Client client = new AmazonS3Client( + new BasicAWSCredentials("identity", "credential"), config); client.setEndpoint("http://127.0.0.1:8080"); client.setS3ClientOptions(new S3ClientOptions().withPathStyleAccess(true)); ``` @@ -11,7 +12,9 @@ client.setS3ClientOptions(new S3ClientOptions().withPathStyleAccess(true)); * [boto](https://github.com/boto/boto) ```python -boto.connect_s3(aws_access_key_id = 'identity', aws_secret_access_key = 'credential', host = '127.0.0.1', port = 8080, is_secure=False, calling_format = boto.s3.connection.OrdinaryCallingFormat()) +boto.connect_s3(aws_access_key_id = 'identity', aws_secret_access_key = 'credential', + host = '127.0.0.1', port = 8080, is_secure=False, + calling_format = boto.s3.connection.OrdinaryCallingFormat()) ``` * [jclouds-cli](https://github.com/jclouds/jclouds-cli)