Fix .gz suffix detection
This commit is contained in:
parent
347716ec6e
commit
0bbcf3823a
1 changed files with 2 additions and 2 deletions
|
|
@ -119,7 +119,7 @@ def writefile(patterns: List[Pattern] or Pattern,
|
||||||
Will automatically compress the file if it has a .gz suffix.
|
Will automatically compress the file if it has a .gz suffix.
|
||||||
"""
|
"""
|
||||||
path = pathlib.Path(filename)
|
path = pathlib.Path(filename)
|
||||||
if path.suffix == 'gz':
|
if path.suffix == '.gz':
|
||||||
open_func = gzip.open
|
open_func = gzip.open
|
||||||
else:
|
else:
|
||||||
open_func = open
|
open_func = open
|
||||||
|
|
@ -213,7 +213,7 @@ def readfile(filename: str or pathlib.Path,
|
||||||
Tries to autodetermine file type based on suffixes
|
Tries to autodetermine file type based on suffixes
|
||||||
"""
|
"""
|
||||||
path = pathlib.Path(filename)
|
path = pathlib.Path(filename)
|
||||||
if path.suffix == 'gz':
|
if path.suffix == '.gz':
|
||||||
open_func = gzip.open
|
open_func = gzip.open
|
||||||
else:
|
else:
|
||||||
open_func = open
|
open_func = open
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue