summaryrefslogtreecommitdiffstats
path: root/Wrappers/Python
diff options
context:
space:
mode:
Diffstat (limited to 'Wrappers/Python')
-rwxr-xr-xWrappers/Python/ccpi/processors.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Wrappers/Python/ccpi/processors.py b/Wrappers/Python/ccpi/processors.py
index 86d8b3a..09e7229 100755
--- a/Wrappers/Python/ccpi/processors.py
+++ b/Wrappers/Python/ccpi/processors.py
@@ -96,8 +96,9 @@ class Normalizer(DataSetProcessor):
projection, flat, dark, self.tolerance) \
for projection in projections.as_array() ]
)
- y = DataSet( a , True,
- dimension_labels=projections.dimension_labels )
+ y = type(projections)( a , True,
+ dimension_labels=projections.dimension_labels,
+ geometry=projections.geometry)
return y