From: Paul Brossier Date: Tue, 20 Nov 2018 21:46:19 +0000 (+0100) Subject: [py] fix % escaping in py-source.c X-Git-Tag: 0.4.8~23^2~1 X-Git-Url: https://git.aubio.org/?p=aubio.git;a=commitdiff_plain;h=15c3466808374dd402d6cc179350742cdac37ce9 [py] fix % escaping in py-source.c --- diff --git a/python/ext/py-source.c b/python/ext/py-source.c index ca525bf4..7687fbd9 100644 --- a/python/ext/py-source.c +++ b/python/ext/py-source.c @@ -155,7 +155,7 @@ static char Py_source_doc[] = "" "... for samples in source:\n" "... n_frames += len(samples)\n" "... print('read', n_frames, 'samples in', samples.shape[0], 'channels',\n" -"... 'from file \"\%s\"' \% source.uri)\n" +"... 'from file \"%%s\"' %% source.uri)\n" "...\n" "read 239334 samples in 2 channels from file \"audiotrack.wav\"\n" "\n"