BUG: Supply a module for Downsampled terms.

This commit is contained in:
Scott Sanderson
2016-08-17 19:48:33 -04:00
parent 8cc8814b5f
commit b1894e0d54
+2 -1
View File
@@ -457,5 +457,6 @@ class DownsampledMixin(StandardOutputs):
return type(
'Downsampled' + other_base.__name__,
(cls, other_base,),
{'__doc__': doc},
{'__doc__': doc,
'__module__': other_base.__module__},
)