fix --location to parse arg properly, pulled from KD5BWT

This commit is contained in:
Nick Foster 2011-12-12 09:38:34 -08:00
parent d6ba39fdef
commit 4fcf7a4498

View File

@ -148,7 +148,7 @@ if __name__ == '__main__':
(options, args) = parser.parse_args()
if options.location is not None:
reader = csv.reader([options.location])
reader = csv.reader([options.location], quoting=csv.QUOTE_NONNUMERIC)
my_position = reader.next()
queue = gr.msg_queue()