Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(372)

Unified Diff: boto/gs/acl.py

Issue 8669001: Pull in upstream boto from github at bcb719937de9ac2851e632d62b777352029a6d55 (Closed) Base URL: svn://svn.chromium.org/boto
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « boto/ec2/instance.py ('k') | boto/gs/bucket.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: boto/gs/acl.py
diff --git a/boto/gs/acl.py b/boto/gs/acl.py
index 0846f018a3e7be5e9993cb1813f20f921ad61ab9..a7517c6009b3a36ea090c49958d52b0dac2f10c7 100755
--- a/boto/gs/acl.py
+++ b/boto/gs/acl.py
@@ -61,9 +61,9 @@ class ACL:
def __repr__(self):
# Owner is optional in GS ACLs.
if hasattr(self, 'owner'):
- entries_repr = ['']
- else:
entries_repr = ['Owner:%s' % self.owner.__repr__()]
+ else:
+ entries_repr = ['']
acl_entries = self.entries
if acl_entries:
for e in acl_entries.entry_list:
« no previous file with comments | « boto/ec2/instance.py ('k') | boto/gs/bucket.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698