summaryrefslogtreecommitdiff
path: root/python/settings.py
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2020-06-17 17:25:55 -0400
committerBrian Potchik <brian@vector35.com>2020-06-17 17:25:55 -0400
commita21af1a6d10074774315c6510d98920fb83338a2 (patch)
tree4b129b4816d04bc59e1fd11f6112a1ac7924661c /python/settings.py
parent676488bb396f41c4855af97fbe0d996238688399 (diff)
ResetAll settings API resets settings in the active schema by default.
Diffstat (limited to 'python/settings.py')
-rw-r--r--python/settings.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/settings.py b/python/settings.py
index 3b92ec5d..a83898af 100644
--- a/python/settings.py
+++ b/python/settings.py
@@ -208,10 +208,10 @@ class Settings(object):
view = view.handle
return core.BNSettingsReset(self.handle, key, view, scope)
- def reset_all(self, view = None, scope = SettingsScope.SettingsAutoScope):
+ def reset_all(self, view = None, scope = SettingsScope.SettingsAutoScope, schema_only = True):
if view is not None:
view = view.handle
- return core.BNSettingsResetAll(self.handle, view, scope)
+ return core.BNSettingsResetAll(self.handle, view, scope, schema_only)
def get_bool(self, key, view = None):
if view is not None: