diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2008-10-31 19:03:07 -0600 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2008-10-31 19:03:07 -0600 |
commit | 5e5a83e4e84d2e9a5d6d987056199a8ed83978b8 (patch) | |
tree | e401d711973a65a0a85fd9a3f69f998204ce3123 /ipalib/plugable.py | |
parent | 5269d1396c2e299d7fc66b55df7a84d482927549 (diff) | |
download | freeipa-5e5a83e4e84d2e9a5d6d987056199a8ed83978b8.tar.gz freeipa-5e5a83e4e84d2e9a5d6d987056199a8ed83978b8.tar.xz freeipa-5e5a83e4e84d2e9a5d6d987056199a8ed83978b8.zip |
Renamed API.bootstrap_from_options() to bootstrap_with_global_options()
Diffstat (limited to 'ipalib/plugable.py')
-rw-r--r-- | ipalib/plugable.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugable.py b/ipalib/plugable.py index ccaf1f159..64a9d8354 100644 --- a/ipalib/plugable.py +++ b/ipalib/plugable.py @@ -814,7 +814,7 @@ class API(DictProxy): handler.setLevel(logging.INFO) log.addHandler(handler) - def bootstrap_from_options(self, options=None, context=None): + def bootstrap_with_global_options(self, options=None, context=None): if options is None: parser = util.add_global_options() (options, args) = parser.parse_args( |