diff options
| author | Nick Pope <nick.pope@flightdataservices.com> | 2019-02-05 22:00:56 +0000 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-07-31 10:02:13 +0200 |
| commit | f618e033acd37d59b536d6e6126e6c5be18037f6 (patch) | |
| tree | 576985d9593733132f9eb6c362e1d04c6c206689 /django/utils/archive.py | |
| parent | c95d063e776e849cf1a0bf616c654165cb89c706 (diff) | |
Fixed #30160 -- Added support for LZMA and XZ templates to startapp/startproject management commands.
Diffstat (limited to 'django/utils/archive.py')
| -rw-r--r-- | django/utils/archive.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/django/utils/archive.py b/django/utils/archive.py index c94ca4950b..235809f2ad 100644 --- a/django/utils/archive.py +++ b/django/utils/archive.py @@ -220,5 +220,7 @@ extension_map = dict.fromkeys(( '.tar', '.tar.bz2', '.tbz2', '.tbz', '.tz2', '.tar.gz', '.tgz', '.taz', + '.tar.lzma', '.tlz', + '.tar.xz', '.txz', ), TarArchive) extension_map['.zip'] = ZipArchive |
