##// END OF EJS Templates
GUI: Bug fixed when channelList = <int>
Miguel Valdez -
r711:181b1f849cd5
parent child
Show More
@@ -81,7 +81,7 def isList(value):
81 81
82 82 x = ast.literal_eval(value)
83 83
84 if type(x) in (tuple, list):
84 if type(x) in (int, float, tuple, list):
85 85 return 1
86 86
87 87 return 0
General Comments 0
You need to be logged in to leave comments. Login now