Index: fact/tools/pyscripts/pyfact/pyfact.py
===================================================================
--- fact/tools/pyscripts/pyfact/pyfact.py	(revision 12841)
+++ fact/tools/pyscripts/pyfact/pyfact.py	(revision 12842)
@@ -6,6 +6,5 @@
 from   ctypes import *
 import numpy as np
-
-import scipy.signal as spsi
+from scipy import signal
 
 # get the ROOT stuff + my shared libs
@@ -149,5 +148,5 @@
         a = np.zeros( windowSize )
         a[0] = len(b)
-        smoothData[:,:] = spsi.lfilter(b, a, smoothData[:,:])
+        smoothData[:,:] = signal.lfilter(b, a, smoothData[:,:])
 
         self.smoothData = smoothData
@@ -170,5 +169,5 @@
         b[length-1] = 1.
         a[0] = 1.
-        cfdData[:,:] = spsi.lfilter(b, a, cfdData[:,:])
+        cfdData[:,:] = signal.lfilter(b, a, cfdData[:,:])
         
         self.cfdData = cfdData
