From 50b9c64f2ffc42b896a7f15b68b186e8b185a564 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20A=C5=9F=C4=B1c=C4=B1?= Date: Tue, 15 Jun 2010 16:56:14 +0000 Subject: [PATCH] archive: Make "bz2" an alias for "bzip2" "bzip2" is used for archives and "bz2" is used for patches. Add this alias for consistency. --- pisi/archive.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pisi/archive.py b/pisi/archive.py index 8393ec73..55cef6a1 100644 --- a/pisi/archive.py +++ b/pisi/archive.py @@ -588,6 +588,7 @@ class Archive: 'tar': ArchiveTar, 'zip': ArchiveZip, 'gzip': ArchiveGzip, + 'bz2': ArchiveBzip2, 'bzip2': ArchiveBzip2, 'lzma': ArchiveLzma, 'xz': ArchiveLzma,