summaryrefslogtreecommitdiff
path: root/configuration.py
diff options
context:
space:
mode:
authorSylvain Th?nault <sylvain.thenault@logilab.fr>2009-11-23 14:44:56 +0100
committerSylvain Th?nault <sylvain.thenault@logilab.fr>2009-11-23 14:44:56 +0100
commitb7e84e3fc5418641041f95a80f08fe053c004c27 (patch)
treea0e0865c87e8bd127df674b53b30f3e323c1b255 /configuration.py
parentb80f0a3c1f04c4446ab3f7ec019a3888fa098fab (diff)
downloadlogilab-common-b7e84e3fc5418641041f95a80f08fe053c004c27.tar.gz
include Dotan Barak spell fixes patch
Diffstat (limited to 'configuration.py')
-rw-r--r--configuration.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/configuration.py b/configuration.py
index 539fa9c..6172c5c 100644
--- a/configuration.py
+++ b/configuration.py
@@ -369,7 +369,7 @@ class OptionsManagerMixIn(object):
self.reset_parsers(usage, version=version)
# list of registered options providers
self.options_providers = []
- # dictionary assocating option name to checker
+ # dictionary associating option name to checker
self._all_options = {}
self._short_options = {}
self._nocallback_options = {}
@@ -534,7 +534,7 @@ class OptionsManagerMixIn(object):
self.load_config_file()
def read_config_file(self, config_file=None):
- """read the configuration file but do not load it (ie dispatching
+ """read the configuration file but do not load it (i.e. dispatching
values to each options provider)
"""
if config_file is None:
@@ -554,7 +554,7 @@ class OptionsManagerMixIn(object):
return
def input_config(self, onlysection=None, inputlevel=0, stream=None):
- """interactivly get configuration values by asking to the user and generate
+ """interactively get configuration values by asking to the user and generate
a configuration file
"""
if onlysection is not None: