From ed298b265b30e5e45d420323c262a3e78e107e10 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sun, 4 Nov 2018 21:08:02 +0100 Subject: [PATCH] [py] fix matching " in cmd.py --- python/lib/aubio/cmd.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/python/lib/aubio/cmd.py b/python/lib/aubio/cmd.py index 1774300b..5b7acb89 100644 --- a/python/lib/aubio/cmd.py +++ b/python/lib/aubio/cmd.py @@ -242,13 +242,13 @@ class AubioArgumentParser(argparse.ArgumentParser): self.add_argument("-o", "--output", type = str, metavar = "", action="store", dest="output_directory", default=None, - help="specify path where slices of the original file should' \ - ' be created") + help="specify path where slices of the original file should" + " be created") self.add_argument("--cut-until-nsamples", type = int, metavar = "", action = "store", dest = "cut_until_nsamples", default = None, - help="how many extra samples should be added at the end of' \ - ' each slice") + help="how many extra samples should be added at the end of" + " each slice") self.add_argument("--cut-every-nslices", type = int, metavar = "", action = "store", dest = "cut_every_nslices", default = None, @@ -256,8 +256,8 @@ class AubioArgumentParser(argparse.ArgumentParser): self.add_argument("--cut-until-nslices", type = int, metavar = "", action = "store", dest = "cut_until_nslices", default = None, - help="how many extra slices should be added at the end of' \ - ' each slice") + help="how many extra slices should be added at the end of" + " each slice") self.add_argument("--create-first", action = "store_true", dest = "create_first", default = False, help="always include first slice") -- 2.11.0