Revision c7e9c644 kamaki/clients/pithos/rest_api.py

b/kamaki/clients/pithos/rest_api.py
249 249
            existence queries, <key><op><value> for value queries, where <op>
250 250
            can be one of =, !=, <=, >=, <, >)
251 251

  
252
        :param shared: (bool) If true, only shared containers will be included
253
            in results
252
        :param show_only_shared: (bool) If true, only shared containers will
253
            be included in results
254 254

  
255 255
        :param until: (string) optional timestamp
256 256

  
......
267 267

  
268 268
        self._assert_container()
269 269

  
270
        self.set_param('format', format, iff=format)
271 270
        self.set_param('limit', limit, iff=limit)
272 271
        self.set_param('marker', marker, iff=marker)
273 272
        if not path:
......
275 274
            self.set_param('delimiter', delimiter, iff=delimiter)
276 275
        else:
277 276
            self.set_param('path', path)
277
        self.set_param('format', format, iff=format)
278 278
        self.set_param('shared', iff=show_only_shared)
279 279
        if meta:
280 280
            self.set_param('meta',  ','.join(meta))

Also available in: Unified diff