From 5e2f6b7500ccd1d5e1b631b67431b43a3d60b8b7 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sat, 19 Nov 2016 23:40:12 +0100 Subject: [PATCH] Fix help text for -f --- src/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.py b/src/main.py index dbf1258..85c5c6a 100644 --- a/src/main.py +++ b/src/main.py @@ -53,11 +53,11 @@ def main(files): if __name__ == '__main__': ap = argparse.ArgumentParser() - ap.add_argument('-f', '--files', type=str, nargs='+', help='Files to upload.', required=True) + ap.add_argument('-f', '--files', type=str, nargs='+', help='Files to compare.', required=True) args = ap.parse_args() files = args.files - + print('WARNING') print('All your sheets should have the same column order.\n')