Based on work by @edrex https://github.com/s3tools/s3cmd/pull/244
| ... | ... |
@@ -1860,7 +1860,7 @@ def main(): |
| 1860 | 1860 |
optparser.add_option( "--access-logging-target-prefix", dest="log_target_prefix", help="Target prefix for access logs (S3 URI) (for [cfmodify] and [accesslog] commands)") |
| 1861 | 1861 |
optparser.add_option( "--no-access-logging", dest="log_target_prefix", action="store_false", help="Disable access logging (for [cfmodify] and [accesslog] commands)") |
| 1862 | 1862 |
|
| 1863 |
- optparser.add_option( "--default-mime-type", dest="default_mime_type", action="store_true", help="Default MIME-type for stored objects. Application default is binary/octet-stream.") |
|
| 1863 |
+ optparser.add_option( "--default-mime-type", dest="default_mime_type", action="store", help="Default MIME-type for stored objects. Application default is binary/octet-stream.") |
|
| 1864 | 1864 |
optparser.add_option("-M", "--guess-mime-type", dest="guess_mime_type", action="store_true", help="Guess MIME-type of files by their extension or mime magic. Fall back to default MIME-Type as specified by --default-mime-type option")
|
| 1865 | 1865 |
optparser.add_option( "--no-guess-mime-type", dest="guess_mime_type", action="store_false", help="Don't guess MIME-type and use the default type instead.") |
| 1866 | 1866 |
optparser.add_option("-m", "--mime-type", dest="mime_type", type="mimetype", metavar="MIME/TYPE", help="Force MIME-type. Override both --default-mime-type and --guess-mime-type.")
|