Show
Ignore:
Timestamp:
2008-06-15 20:00:47 (2 months ago)
Author:
matt
Message:

Added a trackCount parameter to ReleaseFilter (fixes #3781).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • python-musicbrainz2/trunk/src/musicbrainz2/webservice.py

    r9715 r9873  
    419419    def __init__(self, title=None, discId=None, releaseTypes=None, 
    420420            artistName=None, artistId=None, limit=None, 
    421             offset=None, query=None): 
     421            offset=None, query=None, trackCount=None): 
    422422        """Constructor. 
    423423 
     
    450450        @param offset: start results at this zero-based offset 
    451451        @param query: a string containing a query in Lucene syntax 
     452        @param trackCount: the number of tracks in the release 
    452453 
    453454        @see: the constants in L{musicbrainz2.model.Release} 
     
    468469            ('offset', offset), 
    469470            ('query', query), 
     471            ('count', trackCount), 
    470472        ] 
    471473