From 4fcf7a4498214a00fd9b115f4956ff398f05f7bd Mon Sep 17 00:00:00 2001 From: Nick Foster Date: Mon, 12 Dec 2011 09:38:34 -0800 Subject: [PATCH] fix --location to parse arg properly, pulled from KD5BWT --- src/python/uhd_modes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/uhd_modes.py b/src/python/uhd_modes.py index 8ce1a02..624e9e8 100755 --- a/src/python/uhd_modes.py +++ b/src/python/uhd_modes.py @@ -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()