Updates to help docs provided by "drag-n-drop" options such that they don't explicitly refer to what's been set by '--item', but rather the item that's been copied.

Option help takes on a more generic tone to reflect the possibility
that '--destinationitem' has been specified.
This commit is contained in:
Heig Gregorian
2012-07-03 16:10:39 -07:00
parent 147acdd92a
commit af723cb710
+3 -3
View File
@@ -416,7 +416,7 @@ def main():
'-o', '--owner',
metavar='USER',
dest='user',
help=('Sets the owner of the item specified by the --item flag. '
help=('Sets the owner of the copied item. '
'The owner may be either a UID or a symbolic name. '
'The owner will be set recursively on the item.')
)
@@ -424,7 +424,7 @@ def main():
'-g', '--group',
metavar='GROUP',
dest='group',
help=('Sets the group of the item specified by the --item flag. '
help=('Sets the group of the copied item. '
'The group may be either a GID or a symbolic name. '
'The group will be set recursively on the item.')
)
@@ -435,7 +435,7 @@ def main():
action='callback',
type='string',
callback=check_mode,
help=('Sets the mode of the item specified by the --item flag. '
help=('Sets the mode of the copied item. '
'The specified mode must be in symbolic form. '
'See the manpage for chmod(1) for more information. '
'The mode is applied recursively.')