From 18424788c042b0ef9e1713fcc200e410729d6b4d Mon Sep 17 00:00:00 2001 From: Adam Novak Date: Thu, 14 May 2020 11:44:30 -0700 Subject: Handle select values on the backend --- bh20simplewebuploader/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bh20simplewebuploader') diff --git a/bh20simplewebuploader/main.py b/bh20simplewebuploader/main.py index 2aebe80..e80713f 100644 --- a/bh20simplewebuploader/main.py +++ b/bh20simplewebuploader/main.py @@ -259,7 +259,7 @@ def parse_input(input_string, html_type, number_step=None): Raise NotImplementedError if we forgot to implement a type. """ - if html_type == 'text': + if html_type == 'text' or html_type == 'select': return input_string elif html_type == 'number': # May be an int or a float. -- cgit v1.2.3