##// END OF EJS Templates
bundle2: equate 'UN' with no compression...
Gregory Szorc -
r30439:71b368e3 default
parent child Browse files
Show More
@@ -515,7 +515,7 b' class bundle20(object):'
515 515
516 516 def setcompression(self, alg):
517 517 """setup core part compression to <alg>"""
518 if alg is None:
518 if alg in (None, 'UN'):
519 519 return
520 520 assert not any(n.lower() == 'Compression' for n, v in self._params)
521 521 self.addparam('Compression', alg)
General Comments 0
You need to be logged in to leave comments. Login now