mapbox / mbutil

Importer and Exporter of MBTiles
http://mapbox.com/developers/
BSD 3-Clause "New" or "Revised" License
755 stars 198 forks source link

Fix strange spacing in help output #62

Closed bradh closed 8 years ago

bradh commented 9 years ago

Before this change, I see: --scheme=SCHEME Tiling scheme of the tiles. Default is "xyz" (z/x/y), other options are "tms" which is also z/x/y but uses a flipped y coordinate, and "wms" which replicates the MapServer WMS TileCache directory structure "z/000/000/x/000/000/y.png" --image_format=FORMAT The format of the image tiles, either png, jpg, webp or pbf --grid_callback=CALLBACK Option to control JSONP callback for UTFGrid tiles. If grids are not used as JSONP, you can remove callbacks specifying --grid_callback=""

Note the big gaps in the --scheme and --grid_callback text. Looks like the quotes are confusing OptionParser. So work around that.