Skip to content

Commit

Permalink
Merge pull request #901 from bm424/BUG_FIX_load_stack
Browse files Browse the repository at this point in the history
Bug fix load stack
  • Loading branch information
francisco-dlp committed Mar 4, 2016
2 parents 11d2d99 + 8e779b1 commit 43ef92b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions hyperspy/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
from hyperspy import messages
import hyperspy.defaults_parser

from hyperspy.misc.utils import stack
import hyperspy.misc.utils
from hyperspy.misc.io.tools import ensure_directory
from hyperspy.misc.utils import strlist2enumeration
Expand Down Expand Up @@ -194,7 +193,7 @@ def load(filenames=None,
obj = load_single_file(filename,
**kwds)
signal.append(obj)
signal = stack(signal,
signal = hyperspy.misc.utils.stack(signal,
axis=stack_axis,
new_axis_name=new_axis_name,
mmap=mmap, mmap_dir=mmap_dir)
Expand Down

0 comments on commit 43ef92b

Please sign in to comment.