1
0
Fork 0

Bug fix to set a valid default value for the right edge.

Courtesy of report by Brendan Black.
This commit is contained in:
Scott Giese 2018-10-04 18:59:15 -05:00
parent 6589c71f62
commit b0e157dd88

View file

@ -733,7 +733,7 @@ def parseCommandLine():
parser.add_argument("--left", dest="left", type=int, default=-180, help="""\
minimum longitude to include in download [default: %(default)d]""")
parser.add_argument("--right", dest="right", type=int, default=180,
parser.add_argument("--right", dest="right", type=int, default=179,
help="""\
maximum longitude to include in download [default: %(default)d]""")