Move inline comment to separate line in example whipper config file

This avoids `%` character interpolation leading to `InterpolationSyntaxError`.
Added a comment explaining this too.

Fixes #443.

Signed-off-by: JoeLametta <JoeLametta@users.noreply.github.com>
This commit is contained in:
JoeLametta
2020-01-04 15:29:44 +00:00
parent fb9fb34b83
commit 150f0d5e91

View File

@@ -247,7 +247,9 @@ read_offset = 6 ; drive read offset in positive/negative frames (no leading +)
[whipper.cd.rip]
unknown = True
output_directory = ~/My Music
track_template = new/%%A/%%y - %%d/%%t - %%n ; note: the format char '%' must be represented '%%'
# Note: the format char '%' must be represented '%%'.
# Do not add inline comments with an unescaped '%' character (else an 'InterpolationSyntaxError' will occur).
track_template = new/%%A/%%y - %%d/%%t - %%n
disc_template = new/%%A/%%y - %%d/%%A - %%d
# ...
```