From d56f47d530de63b433a6410b82a712e731fc4d2c Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Sun, 12 Dec 2010 23:59:55 +0000 Subject: [PATCH] fix for a bug reported by black zero (ValueError: invalid literal for int() with base 10: '1-20') --- lib/core/optiondict.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/optiondict.py b/lib/core/optiondict.py index bb308dbee..8951204d5 100644 --- a/lib/core/optiondict.py +++ b/lib/core/optiondict.py @@ -77,7 +77,7 @@ optDict = { "Techniques": { "timeSec": "integer", "unionTest": "boolean", - "uCols": "integer", + "uCols": "string", "uChar": "string" },