diff options
-rw-r--r-- | Lib/tarfile.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/tarfile.py b/Lib/tarfile.py index 152b23c..af733de 100644 --- a/Lib/tarfile.py +++ b/Lib/tarfile.py @@ -923,7 +923,8 @@ class TarFile(object): try: import gzip - except ImportError: + gzip.GzipFile + except (ImportError, AttributeError): raise CompressionError, "gzip module is not available" pre, ext = os.path.splitext(name) |