summaryrefslogtreecommitdiff
path: root/ricky/param/multiselect.py
diff options
context:
space:
mode:
Diffstat (limited to 'ricky/param/multiselect.py')
-rw-r--r--ricky/param/multiselect.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/ricky/param/multiselect.py b/ricky/param/multiselect.py
index 1db22f3..ac5c9e7 100644
--- a/ricky/param/multiselect.py
+++ b/ricky/param/multiselect.py
@@ -25,6 +25,10 @@ class MultiSelect(Param):
return super(MultiSelect, self).value_get()
def value_set(self, value):
+ import sys
+ sys.stderr.write("in value set right now for some reason...\n")
+ sys.stderr.write("%s\n" % self.name)
+ sys.stderr.write("%s\n" % value)
if not any([value == i['value'] for i in self._options]) and \
value is not None:
raise ValueError