Changes between Initial Version and Version 1 of Ticket #1927, comment 6
- Timestamp:
- 2016-09-20T13:50:47Z (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1927, comment 6
initial v1 1 1 It needs to be like this: 2 2 {{{ 3 [...] 4 endpoint = AWSServiceEndpoint(uri=url) 5 3 6 def make_query(*args, **kwargs): 4 7 if usertoken is not None: … … 15 18 return query 16 19 17 query_factory = make_query 20 self.client = S3Client(creds=creds, endpoint=endpoint, query_factory=make_query) 21 self.ServiceError = S3Error 18 22 }}}