View | Details | Raw Unified | Return to bug 13571
Collapse All | Expand All

(-)utils.py (-1 / +1 lines)
Lines 268-274 Link Here
268
        return NoneSound()
268
        return NoneSound()
269
    if not os.path.exists(file):
269
    if not os.path.exists(file):
270
        if UT_DEBUG:
270
        if UT_DEBUG:
271
            print >> sys.stderr, 'Cannot load music: %s \n%s' % (name,pygame.get_error())
271
            print >> sys.stderr, 'Cannot load music: %s \n%s' % (file, pygame.get_error())
272
            print >> sys.stderr, 'Using Nonesound'
272
            print >> sys.stderr, 'Using Nonesound'
273
        playmusic = NoneSound()
273
        playmusic = NoneSound()
274
    else:
274
    else:

Return to bug 13571