From f6a7cbfc7061c8357a27d16a7d69d7568e310f27 Mon Sep 17 00:00:00 2001 From: JustAnotherArchivist Date: Sat, 13 Jul 2019 21:34:54 +0000 Subject: [PATCH] Fix --with-list-urls help message --- s3-bucket-list | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s3-bucket-list b/s3-bucket-list index 0455644..92f3764 100644 --- a/s3-bucket-list +++ b/s3-bucket-list @@ -21,7 +21,7 @@ while i < len(sys.argv): print('Options:', file = sys.stderr) print(f' --format FORMAT Modify the output format; FORMAT defaults to {format!r}; available fields: url, key, size, and all fields returned by S3 (e.g. LastModified)', file = sys.stderr) print( ' --marker KEY Start after a particular key instead of from the beginning', file = sys.stderr) - print( ' --with-list-urls Enables printing the list URLs retrieved to stderr', file = sys.stderr) + print( ' --with-list-urls Enables printing the list URLs retrieved to FD 3', file = sys.stderr) sys.exit(1) elif arg == '--with-list-urls': withListUrls = True