##// END OF EJS Templates
gzip: use the stdlib version with python 3 (issue6284)...
marmoute -
r44982:b7ca03df stable
parent child Browse files
Show More
@@ -135,7 +135,9 b' class tarit(object):'
135 135 '''write archive to tar file or stream. can write uncompressed,
136 136 or compress with gzip or bzip2.'''
137 137
138 if True:
138 if pycompat.ispy3:
139 GzipFileWithTime = gzip.GzipFile # camelcase-required
140 else:
139 141
140 142 class GzipFileWithTime(gzip.GzipFile):
141 143 def __init__(self, *args, **kw):
General Comments 0
You need to be logged in to leave comments. Login now