Commit 44f04e17 authored by Zolnierczuk, Piotr's avatar Zolnierczuk, Piotr
Browse files

spelling error

parent acd50c73
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ def get_hdf_filetype(filename):
        with h5py.File(filename, 'r') as nxsfile:
            try:
                notes   = nxsfile['/entry/notes']
                notes   = bytes(notes[0]).decode('ascii', erorrs='ingore').lower()
                notes   = bytes(notes[0]).decode('ascii', errors='ingore').lower()
                ftype    = "application/nexus-nse-unknown"
                if 'scan=transmission' in notes:
                    ftype = "application/nexus-nse-transmission"
+2 −2
Original line number Diff line number Diff line
@@ -2,8 +2,8 @@
PySEN revision module
"""
import sys
__version__  = "2.1.0.dev6"
__date__     = "Mar 6, 2026"
__version__  = "2.1.0.dev7"
__date__     = "Mar 8, 2026"

def version(full=False):
    "get pysen version number"