Skip to content

Commit 3b182eb

Browse files
committed
fix for non-standard version identifiers
1 parent db62366 commit 3b182eb

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

neo/rawio/neuralynxrawio/nlxheader.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,8 @@ def __init__(self, filename):
189189
self['ApplicationName'] = 'Neuraview'
190190
app_version = '2'
191191

192+
if " Development" in app_version:
193+
app_version = app_version.replace(" Development", ".dev0")
192194
self['ApplicationVersion'] = Version(app_version)
193195

194196
# convert bit_to_microvolt

0 commit comments

Comments
 (0)