From 2b175cb748a863213c9581894f41b73c19b3b85a Mon Sep 17 00:00:00 2001 From: Metin Akdere Date: Wed, 8 Jun 2011 14:20:34 +0000 Subject: [PATCH] archive: Fix typo in recently added Archive7Zip class --- pisi/archive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pisi/archive.py b/pisi/archive.py index 26e325e2..06188e66 100644 --- a/pisi/archive.py +++ b/pisi/archive.py @@ -465,7 +465,7 @@ class ArchiveTarZ(ArchiveBase): self.tar.close() class Archive7Zip(ArchiveBase): - """ArchiveZip handles 7-Zip archives.""" + """Archive7Zip handles 7-Zip archives.""" def __init__(self, file_path, arch_type="7z"): super(Archive7Zip, self).__init__(file_path, arch_type)