Skip to content

Commit 3f59b01

Browse files
authored
Update --ls help text to clarify hidden files are displayed
1 parent dec2156 commit 3f59b01

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nxc/protocols/ftp/proto_args.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def proto_args(parser, parents):
66
ftp_parser.add_argument("--port", type=int, default=21, help="FTP port")
77

88
cgroup = ftp_parser.add_argument_group("File Operations")
9-
cgroup.add_argument("--ls", metavar="DIRECTORY", nargs="?", const=".", help="List files in the directory")
9+
cgroup.add_argument("--ls", metavar="DIRECTORY", nargs="?", const=".", help="List all files (including hidden) in the directory")
1010
cgroup.add_argument("--get", metavar="FILE", help="Download a file")
1111
cgroup.add_argument("--put", metavar=("LOCAL_FILE", "REMOTE_FILE"), nargs=2, help="Upload a file")
1212
return parser

0 commit comments

Comments
 (0)