Bug Filed on 04-06-2016: Dashboard Panic

The same problems again.Please give me a way to disable auto 1wire discovery I need to move forward…
I guess I 'll have to fiddle with devices.py and edit some values in the code below but I cant figure it out faster than you guys.

self.sensors = {}
try:
for k in jsonDevices:
sleep(SENSOR_INFO_SLEEP)
#webiopiDevice = WebiopiDevice()
if len(k[‘type’]) == 0:
webiopiDevice = {}
webiopiDevice[‘type’] = ‘’
webiopiDeviceName = k[‘name’]
webiopiDevice[‘name’] = parse.unquote(webiopiDeviceName)
webiopiDevice[‘args’] = k[‘args’]
webiopiDevice[‘status’] = k[‘status’]
webiopiDevice[‘device’] = k[‘device’]
if ‘description’ in k:
webiopiDevice[‘description’] = k[‘description’]
if len(k[‘type’]) > 1:
webiopiDevice[‘sensor’] = self.SHA_Calc_str(webiopiDevice[‘name’]+webiopiDevice[‘type’])
else:
webiopiDevice[‘sensor’] = self.SHA_Calc_str(webiopiDevice[‘name’]+webiopiDevice[‘device’])
devices.append(webiopiDevice)
else:
for deviceType in k[‘type’]:
webiopiDevice = {}
webiopiDevice[‘type’] = deviceType
webiopiDeviceName = k[‘name’]
webiopiDevice[‘name’] = parse.unquote(webiopiDeviceName)
webiopiDevice[‘args’] = k[‘args’]
webiopiDevice[‘status’] = k[‘status’]
webiopiDevice[‘device’] = k[‘device’]
if ‘description’ in k:
webiopiDevice[‘description’] = k[‘description’]
if ‘origin’ in k:
webiopiDevice[‘origin’] = k[‘origin’]
if len(k[‘type’]) > 1:
webiopiDevice[‘hash’] = self.SHA_Calc_str(webiopiDevice[‘name’]+webiopiDevice[‘type’])
else:
webiopiDevice[‘hash’] = self.SHA_Calc_str(webiopiDevice[‘name’]+webiopiDevice[‘device’])
if webiopiDevice[‘hash’] in self.disabledSensors:
webiopiDevice[‘enabled’] = 0
else:
webiopiDevice[‘enabled’] = 1
sensor = None

@gamoxristos have you found the solution for this case?
today I got the problem too. I’m using jessie with raspberry 3.
the problem happened when I replace the temperature sensor with the new one with the same model.

i have tried the command:
sudo rm /etc/webiopi/devices.json
sudo service webiopi restart

in the android the layout is clean, but in the website still show too many icons. I have tried to reboot, shutdown. but it was not helped.