From 5f2f459531c747ff8c4f82b2d19f3326943197a7 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sun, 4 Nov 2018 21:06:36 +0100 Subject: [PATCH] [py] fix missing eol in cmd.py --- python/lib/aubio/cmd.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/lib/aubio/cmd.py b/python/lib/aubio/cmd.py index 2ae9f18b..1774300b 100644 --- a/python/lib/aubio/cmd.py +++ b/python/lib/aubio/cmd.py @@ -242,12 +242,12 @@ 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' + 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' + help="how many extra samples should be added at the end of' \ ' each slice") self.add_argument("--cut-every-nslices", type = int, metavar = "", @@ -256,7 +256,7 @@ 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' + 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, -- 2.11.0