Fixed line lengths, typo in documentation.

This commit is contained in:
Francesco Rubino 2014-11-09 10:29:46 +00:00
parent 8af5b0e6c3
commit 4bf17486eb
2 changed files with 4 additions and 4 deletions

View file

@ -514,7 +514,7 @@ class AudioToolsBackend(Backend):
rg_track_gain, rg_track_peak = rg.title_gain(audiofile.to_pcm())
log.info(
u'ReplayGain for track {0} - {1}: gain {2:.2f} peak {3:.2f}'.format(
u'ReplayGain for track {0} - {1}: {2:.2f}, {3:.2f}'.format(
item.artist,
item.title,
rg_track_gain,
@ -547,7 +547,7 @@ class AudioToolsBackend(Backend):
Gain(gain=rg_track_gain, peak=rg_track_peak)
)
log.info(
u'ReplayGain for track {0} - {1}: gain {2:.2f} peak {3:.2f}'.format(
u'ReplayGain for track {0} - {1}: {2:.2f}, {3:.2f}'.format(
item.artist,
item.title,
rg_track_gain,
@ -560,7 +560,7 @@ class AudioToolsBackend(Backend):
log.info('-' * 100)
log.info(
u'ReplayGain for Album {0} - {1}: gain {2:.2f} peak {3:.2f}'.format(
u'ReplayGain for Album {0} - {1}: {2:.2f}, {3:.2f}'.format(
album.albumartist,
album.album,
rg_album_gain,

View file

@ -76,7 +76,7 @@ configuration file. The available options are:
- ``auto``: Enable ReplayGain analysis during import.
Default: ``yes``.
- ``backend``: The analysis backend; either ``gstreamer``, ``command`` or ``audtiotools`.
- ``backend``: The analysis backend; either ``gstreamer``, ``command`` or ``audiotools`.
Default: ``command``.
- ``overwrite``: Re-analyze files that already have ReplayGain tags.
Default: ``no``.