diff --git a/SciFiReaders/readers/microscopy/spm/afm/AR_hdf5.py b/SciFiReaders/readers/microscopy/spm/afm/AR_hdf5.py index 2dabd41..b2f95f0 100644 --- a/SciFiReaders/readers/microscopy/spm/afm/AR_hdf5.py +++ b/SciFiReaders/readers/microscopy/spm/afm/AR_hdf5.py @@ -237,7 +237,7 @@ def note_value(self, name): Parameters ---------------- name : String / unicode - Name of the parameter to get teh value + Name of the parameter to get the value Returns ---------------- @@ -245,7 +245,7 @@ def note_value(self, name): Value of the Note entry requested. ''' try: - match = re.search(r"^" + name + ":\s+(.+$)", self.notes, re.M) + match = re.search(r"^" + name + r":\s+(.+$)", self.notes, re.M) if not match: raise Exception except: diff --git a/setup.py b/setup.py index 5639703..e019614 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,8 @@ 'numba>=0.59.0rc1; python_version >= "3.10"', 'ipython>=7.1.0', 'pyUSID', - 'mrcfile' + 'gdown', + 'mrcfile', # generic: # Reader specific ones go to extras ]