diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-17 12:50:46 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-17 12:50:46 (GMT) |
commit | 30b9d5d3af043fc2687ad11a188a34fe355e20ef (patch) | |
tree | 6e86b6b605397d826721779611ebd06d028acfc1 /Lib/tarfile.py | |
parent | 67f39777fa2c14f0e632adda8c5945cec569b46e (diff) | |
download | cpython-30b9d5d3af043fc2687ad11a188a34fe355e20ef.zip cpython-30b9d5d3af043fc2687ad11a188a34fe355e20ef.tar.gz cpython-30b9d5d3af043fc2687ad11a188a34fe355e20ef.tar.bz2 |
#18705: fix a number of typos. Patch by FĂ©vry Thibault.
Diffstat (limited to 'Lib/tarfile.py')
-rw-r--r-- | Lib/tarfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tarfile.py b/Lib/tarfile.py index 6693840..16d338c 100644 --- a/Lib/tarfile.py +++ b/Lib/tarfile.py @@ -289,7 +289,7 @@ class ExtractError(TarError): """General exception for extract errors.""" pass class ReadError(TarError): - """Exception for unreadble tar archives.""" + """Exception for unreadable tar archives.""" pass class CompressionError(TarError): """Exception for unavailable compression methods.""" |