Changeset 555


Ignore:
Timestamp:
19-10-11 20:45:22 (19 months ago)
Author:
thomas
Message:
  • morituri/common/musicbrainz.py:
  • morituri/rip/debug.py: Doc/output fixes.
Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r554 r555  
     12011-10-19  Thomas Vander Stichele  <thomas at apestaart dot org> 
     2 
     3        * morituri/common/musicbrainz.py: 
     4        * morituri/rip/debug.py: 
     5          Doc/output fixes. 
     6 
    172011-10-19  Thomas Vander Stichele  <thomas at apestaart dot org> 
    28 
  • trunk/morituri/common/musicbrainz.py

    r551 r555  
    133133def musicbrainz(discid): 
    134134    """ 
     135    Based on a MusicBrainz disc id, get a list of DiscMetadata objects 
     136    for the given disc id. 
     137 
     138    Example disc id: Mj48G109whzEmAbPBoGvd4KyCS4- 
     139 
     140    @type  discid: str 
     141 
    135142    @rtype: list of L{DiscMetadata} 
    136143    """ 
  • trunk/morituri/rip/debug.py

    r554 r555  
    107107            for j, track in enumerate(md.tracks): 
    108108                self.stdout.write('      Track %2d: %r - %r\n' % ( 
    109                     j, track.artist, track.title)) 
     109                    j + 1, track.artist, track.title)) 
    110110 
    111111class Debug(logcommand.LogCommand): 
Note: See TracChangeset for help on using the changeset viewer.