Skip to content

Commit 753b6dd

Browse files
committed
xcp.cpiofile: fix bad indentation
Signed-off-by: Yann Dirson <yann.dirson@vates.fr>
1 parent c21cbd7 commit 753b6dd

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

xcp/cpiofile.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1112,8 +1112,7 @@ def gzopen(cls, name, mode="r", fileobj=None, compresslevel=9):
11121112
fileobj = file(name, mode + "b")
11131113

11141114
try:
1115-
t = cls.cpioopen(name, mode,
1116-
gzip.GzipFile(name, mode, compresslevel, fileobj))
1115+
t = cls.cpioopen(name, mode, gzip.GzipFile(name, mode, compresslevel, fileobj))
11171116
except IOError:
11181117
raise ReadError("not a gzip file")
11191118
t._extfileobj = False

0 commit comments

Comments
 (0)