From 0771c6fc8a9a3f9b7755551832bac0db2f7aee4f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lo=C3=AFc=20Le=20Guyader?= <loic.le.guyader@xfel.eu>
Date: Wed, 1 Apr 2020 11:20:08 +0200
Subject: [PATCH] Fix for xarray 0.15

---
 FastCCD.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/FastCCD.py b/FastCCD.py
index 612eec5..32e21ab 100644
--- a/FastCCD.py
+++ b/FastCCD.py
@@ -630,7 +630,7 @@ def process_one_module(job):
         data_pumped = ds.where(ds['FastADC5'] > 0, drop=True).groupby('scan_variable').sum('trainId')
         data_unpumped = ds.where(ds['FastADC5'] < 1, drop=True).groupby('scan_variable').sum('trainId')
                    
-        module_data = data_pumped['fastccd'].to_dataset('pumped')
+        module_data = data_pumped['fastccd'].to_dataset(name='pumped')
         module_data['unpumped'] = data_unpumped['fastccd']   
         module_data['sum_count_pumped'] = data_pumped['sum_count']
         module_data['sum_count_unpumped'] = data_unpumped['sum_count']
-- 
GitLab