From 150f0d5e91b1f38ad690225cb6051df33030a932 Mon Sep 17 00:00:00 2001 From: JoeLametta Date: Sat, 4 Jan 2020 15:29:44 +0000 Subject: [PATCH] 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 --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b1f12b8..57a25d4 100644 --- a/README.md +++ b/README.md @@ -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 # ... ```