Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions source/config/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,15 +504,18 @@ class ConfigManager(object):
Changed settings are written to the most recently activated profile.
"""

#: Sections that only apply to the base configuration;
#: i.e. they cannot be overridden in profiles.
BASE_ONLY_SECTIONS = frozenset({
BASE_ONLY_SECTIONS = {
"general",
"update",
"upgrade",
"development",
"addonStore",
})
}
"""
Sections that only apply to the base configuration;
i.e. they cannot be overridden in profiles.
Note this set may be extended by add-ons.
"""
Comment thread
seanbudd marked this conversation as resolved.

def __init__(self):
self.spec = confspec
Expand Down