summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoranatoly techtonik <techtonik@gmail.com>2016-09-06 09:37:10 +0000
committeranatoly techtonik <techtonik@gmail.com>2016-09-06 09:37:10 +0000
commit90e05f1801db6cba75b97d04ee225ef2c12e87ab (patch)
treea704f6e8a219b9a0ec869c75bd5c78d09a96519a
parent2ac4af16ad29b5e0a54acd734d001e3038f0b235 (diff)
downloadwheel-90e05f1801db6cba75b97d04ee225ef2c12e87ab.tar.gz
archive.py used wrong logger (fixes issue #174)techtonik/archivepy-used-wrong-logger-fixes-issue--1473154621541
-rw-r--r--wheel/archive.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wheel/archive.py b/wheel/archive.py
index fa30a70..403d45b 100644
--- a/wheel/archive.py
+++ b/wheel/archive.py
@@ -8,7 +8,7 @@ import logging
import os.path
import zipfile
-log = logging.getLogger("wheel")
+from distutils import log
def archive_wheelfile(base_name, base_dir):