From d8a3ae82fc258b9ee3af3ca03f009b256fbdd622 Mon Sep 17 00:00:00 2001 From: Kevin Caccamo Date: Wed, 30 Dec 2015 15:25:26 -0500 Subject: [PATCH] Fix tiny syntax error --- bin/weewx/drivers/ws1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/weewx/drivers/ws1.py b/bin/weewx/drivers/ws1.py index 2e9f9156..8b0c2b80 100644 --- a/bin/weewx/drivers/ws1.py +++ b/bin/weewx/drivers/ws1.py @@ -441,7 +441,7 @@ class WS1ConfEditor(weewx.drivers.AbstractConfEditor): print "Specify how long to wait for a response, in seconds." timeout = self._prompt('timeout', 3) - return {'mode': con_mode, 'port': port, 'timeout', timeout} + return {'mode': con_mode, 'port': port, 'timeout': timeout} # define a main entry point for basic testing of the station without weewx