Fix bug with parsing tmux version from next-<major>.<minor>

This commit is contained in:
Ryan Rosenblum 2023-12-04 12:27:06 -05:00
parent 14cc0d2df8
commit 11a2362199
1 changed files with 1 additions and 0 deletions

View File

@ -81,5 +81,6 @@ def get_tmux_version(pl):
major, minor = version_string.split('.')
major = NON_DIGITS.subn('', major)[0]
suffix = DIGITS.subn('', minor)[0] or None
major = NON_DIGITS.subn('', major)[0]
minor = NON_DIGITS.subn('', minor)[0]
return TmuxVersionInfo(int(major), int(minor), suffix)