Fix help text for -f

This commit is contained in:
Gabriel Augendre 2016-11-19 23:40:12 +01:00
parent 5b6f6856f2
commit 5e2f6b7500
No known key found for this signature in database
GPG key ID: D2B6A5B41FC438B1

View file

@ -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')