From: Daniel Garcia Moreno Date: Mon, 8 Jul 2013 19:00:29 +0000 (+0200) Subject: Removing not needed line, it's a self assignation X-Git-Tag: v2.2~172 X-Git-Url: http://developer.intra2net.com/git/?a=commitdiff_plain;h=baefb3f978be5a35c6b816f7330c97660049065f;p=python-delta-tar Removing not needed line, it's a self assignation --- diff --git a/deltatar/tarfile.py b/deltatar/tarfile.py index a6fb2f6..df44b2f 100644 --- a/deltatar/tarfile.py +++ b/deltatar/tarfile.py @@ -1807,7 +1807,6 @@ class TarFile(object): elif "#" in mode: filemode, comptype = mode.split("#", 1) filemode = filemode or "r" - comptype = comptype if filemode not in "rw": raise ValueError("mode must be 'r' or 'w'")