diff options
author | Travis E. Oliphant <teoliphant@gmail.com> | 2012-10-09 22:49:06 -0700 |
---|---|---|
committer | Travis E. Oliphant <teoliphant@gmail.com> | 2012-10-09 22:49:06 -0700 |
commit | fe6f42c427239d36579723085cc5207cedd8dcd1 (patch) | |
tree | 8328dfbfc9f10bd8de0fc85010cebe375eae3589 | |
parent | ebc9bbb0f1d3f316254b29f8965112c85b63e62f (diff) | |
parent | 7078f01420626e8261389ce558cb27d750d6650e (diff) | |
download | numpy-fe6f42c427239d36579723085cc5207cedd8dcd1.tar.gz |
Merge pull request #480 from matthew-brett/fix-distutils-log-warning
FIX: remove log line causing warning from disutils
-rw-r--r-- | numpy/distutils/misc_util.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/numpy/distutils/misc_util.py b/numpy/distutils/misc_util.py index 2e4ed27f3..ea3d5f325 100644 --- a/numpy/distutils/misc_util.py +++ b/numpy/distutils/misc_util.py @@ -249,11 +249,9 @@ def gpaths(paths, local_path='', include_non_existing=True): _temporary_directory = None def clean_up_temporary_directory(): - from numpy.distutils import log global _temporary_directory if not _temporary_directory: return - log.debug('removing %s', _temporary_directory) try: shutil.rmtree(_temporary_directory) except OSError: |