summaryrefslogtreecommitdiff
path: root/utils.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2007-12-15 18:56:40 +0000
committerTravis Oliphant <oliphant@enthought.com>2007-12-15 18:56:40 +0000
commit0ce4792257d812a05ce222d0e5b5eb1aa54d19fd (patch)
tree03e69d64bd0d2871776d092297a5e5a40c7cd26a /utils.py
parente76b5fa6896c09257181675bbf4cf47789d32927 (diff)
downloadnumpy-0ce4792257d812a05ce222d0e5b5eb1aa54d19fd.tar.gz
Start changes for numpy.lib to support deprecations in scipy.io
Diffstat (limited to 'utils.py')
-rw-r--r--utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils.py b/utils.py
index 95dd4f581..8031fdf75 100644
--- a/utils.py
+++ b/utils.py
@@ -90,7 +90,7 @@ def deprecate(func, oldname, newname):
return func(*args, **kwds)
newfunc = _set_function_name(newfunc, oldname)
doc = func.__doc__
- depdoc = '%s is DEPRECATED in numpy: use %s instead' % (oldname, newname,)
+ depdoc = '%s is DEPRECATED: use %s instead' % (oldname, newname,)
if doc is None:
doc = depdoc
else: