summaryrefslogtreecommitdiff
path: root/numpy/distutils/log.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/distutils/log.py')
-rw-r--r--numpy/distutils/log.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/log.py b/numpy/distutils/log.py
index 2f801a732..20eb59754 100644
--- a/numpy/distutils/log.py
+++ b/numpy/distutils/log.py
@@ -53,9 +53,9 @@ def set_threshold(level, force=False):
# likely a good reason why we're running at this level.
_global_log.threshold = level
if level <= DEBUG:
- info('set_threshold: setting thershold to DEBUG level, it can be changed only with force argument')
+ info('set_threshold: setting threshold to DEBUG level, it can be changed only with force argument')
else:
- info('set_threshold: not changing thershold from DEBUG level %s to %s' % (prev_level,level))
+ info('set_threshold: not changing threshold from DEBUG level %s to %s' % (prev_level,level))
return prev_level
def set_verbosity(v, force=False):