Skip to content

Commit

Permalink
Add .zst as a possible extension for zstandard (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
svenstaro authored and c-w committed Dec 27, 2019
1 parent 18f54e7 commit 3e152c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xtarfile/xtarfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@


_HANDLERS = {
'zstd': ZstandardTarfile
'zstd': ZstandardTarfile,
'zst': ZstandardTarfile,
}

_NATIVE_FORMATS = ('gz', 'bz2', 'xz')
Expand Down

0 comments on commit 3e152c2

Please sign in to comment.