Skip to content

Commit

Permalink
fix error in fmt_to_datatype_v3
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhrisca committed Apr 5, 2020
1 parent 8dc2136 commit 1c50268
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion asammdf/blocks/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ def fmt_to_datatype_v3(fmt, shape, array=False):
"""
byteorder = fmt.byteorder
if byteorder == '=|':
if byteorder in '=|':
byteorder = '<' if sys.byteorder == 'little' else '>'
size = fmt.itemsize * 8
kind = fmt.kind
Expand Down
2 changes: 1 addition & 1 deletion asammdf/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
""" asammdf version module """

__version__ = "5.19.12"
__version__ = "5.19.13"

0 comments on commit 1c50268

Please sign in to comment.