From dbb428e114a6c48653dc1cd7c31eba1853466a37 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Wed, 20 Aug 2014 00:01:30 -0700 Subject: [PATCH] Because it looks prettier there. --- trade.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trade.py b/trade.py index 4e748b78..a462540e 100644 --- a/trade.py +++ b/trade.py @@ -134,11 +134,11 @@ def parse_command_line(): parser.add_argument('--to', dest='dest', metavar='STATION', help='Specifies final system/station', required=False) parser.add_argument('--via', dest='via', metavar='STATION', help='Require specified station to be en-route', required=False) parser.add_argument('--avoid', dest='avoid', metavar='NAME', help='Exclude an item, system or station from the database. Partial matches allowed, e.g. "dom.ap" matches "Dom. Appliance"', required=False, action='append') - parser.add_argument('--credits', metavar='CR', help='Number of credits to start with', type=int, required=True) parser.add_argument('--hops', metavar='N', help='Number of hops (station-to-station) to run. DEFAULT: 2', type=int, default=2, required=False) parser.add_argument('--jumps', metavar='N', dest='maxJumps', help='Maximum total jumps (system-to-system)', type=int, default=None, required=False) parser.add_argument('--jumps-per', metavar='N', dest='maxJumpsPer', help='Maximum jumps (system-to-system) per hop (station-to-station). DEFAULT: 2', type=int, default=2, required=False) parser.add_argument('--ly-per', metavar='N.NN', dest='maxLyPer', help='Maximum light years per individual jump. DEFAULT: 5.2', type=float, default=5.2, required=False) + parser.add_argument('--credits', metavar='CR', help='Number of credits to start with', type=int, required=True) parser.add_argument('--capacity', metavar='N', help='Maximum capacity of cargo hold. DEFAULT: 4', type=int, default=4, required=False) parser.add_argument('--limit', metavar='N', help='Maximum units of any one cargo item to buy. DEFAULT: 0 (unlimited)', type=int, default=0, required=False) parser.add_argument('--unique', help='Only visit each station once', default=False, required=False, action='store_true')