Skip to content

Commit

Permalink
Do not sort collection members because release_date is not always fil…
Browse files Browse the repository at this point in the history
…led.
  • Loading branch information
root committed Jun 29, 2013
1 parent 0286ab5 commit 3e48760
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tmdb3/tmdb_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ class Collection( NameRepr, Element ):
raw=False, default=None)
poster = Datapoint('poster_path', handler=Poster, \
raw=False, default=None)
members = Datalist('parts', handler=Movie, sort='releasedate')
members = Datalist('parts', handler=Movie)

def _populate(self):
return Request('collection/{0}'.format(self.id), \
Expand Down

0 comments on commit 3e48760

Please sign in to comment.