From 3148df9356c3e73d1dab55532efd14e80d7454af Mon Sep 17 00:00:00 2001 From: Matteo Cypriani Date: Sun, 1 Jun 2014 21:46:29 -0400 Subject: [PATCH] [file_utils] unln: typos --- file_utils/unln.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/file_utils/unln.py b/file_utils/unln.py index 7876eb5..fecccfe 100755 --- a/file_utils/unln.py +++ b/file_utils/unln.py @@ -78,7 +78,7 @@ def dereference(path): # Parse command-line arguments arg_parser = argparse.ArgumentParser( - description="Separate a file name from its other hard links", + description="Separates a file name from its other hard links", epilog="For more information about this program, see the README file \ provided with the distribution.") arg_parser.add_argument("-L", "--dereference", action="store_true", @@ -89,7 +89,7 @@ arg_parser.add_argument("-s", "--sync", action="store_true", arg_parser.add_argument("-v", "--verbose", action="store_true", help="increase output verbosity") arg_parser.add_argument("filenames", metavar="file", nargs="+", - help="file name to work on") + help="file names to work on") options = arg_parser.parse_args()