[bugfix] setting Datastructure to obspydmt or None caused crash and corrupted QSettings

This commit is contained in:
2018-07-10 14:20:31 +02:00
parent 5f6f986e3e
commit b870b5378a
2 changed files with 18 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ Created on Wed Jan 26 17:47:25 2015
@author: sebastianw
"""
from pylot.core.io.data import SeiscompDataStructure, PilotDataStructure
from pylot.core.io.data import SeiscompDataStructure, PilotDataStructure, ObspyDMTdataStructure
DATASTRUCTURE = {'PILOT': PilotDataStructure, 'SeisComP': SeiscompDataStructure,
'obspyDMT': None, None: None}
'obspyDMT': ObspyDMTdataStructure, None: PilotDataStructure}