GUI_Options -> GUI
This commit is contained in:
parent
3dfa75991b
commit
5fbbb26c00
@ -11,20 +11,20 @@ class ConfigImporter():
|
||||
def load_common_attributes(self):
|
||||
"""Loads common attributes from the initialized file."""
|
||||
try:
|
||||
return self.parser.get('GUI_Options', 'CommonParameters')
|
||||
return self.parser.get('GUI', 'CommonParameters')
|
||||
except:
|
||||
return 'One, Two, Three'
|
||||
|
||||
def load_output_types(self):
|
||||
"""Loads output types from the initialized file."""
|
||||
try:
|
||||
return self.parser.get('GUI_Options', 'OutputTypes')
|
||||
return self.parser.get('GUI', 'OutputTypes')
|
||||
except:
|
||||
return 'csv'
|
||||
|
||||
def load_always_attributes(self):
|
||||
"""Loads attributes that are always searched for from the initialized file."""
|
||||
try:
|
||||
return self.parser.get('GUI_Options', 'AlwaysParameters')
|
||||
return self.parser.get('GUI', 'AlwaysParameters')
|
||||
except:
|
||||
return 'Name, Weight'
|
||||
|
@ -1,4 +1,4 @@
|
||||
[GUI_Options]
|
||||
[GUI]
|
||||
# Personalize options in your User Interface
|
||||
|
||||
# Commonly used parameters are listed in the GUI for easy selection
|
||||
|
Reference in New Issue
Block a user