Inherit help message on decoration for decompress

This commit is contained in:
Caleb Deveraux 2010-10-05 22:26:49 -06:00 committed by David Vierra
parent 44d301d59f
commit 2f824e051a

View File

@ -303,6 +303,7 @@ def decompress_first(func):
def dec_first(self, *args, **kw):
self.decompress();
return func(self, *args, **kw);
dec_first.__doc__ = func.__doc__
return dec_first
class MCLevel(object):