We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45270c1 commit cc7795aCopy full SHA for cc7795a
src/libtmux/common.py
@@ -426,7 +426,9 @@ def has_minimum_version(raises: bool = True) -> bool:
426
if raises:
427
raise exc.VersionTooLow(
428
"libtmux only supports tmux {} and greater. This system"
429
- " has {} installed. Upgrade your tmux to use libtmux.".format(TMUX_MIN_VERSION, get_version())
+ " has {} installed. Upgrade your tmux to use libtmux.".format(
430
+ TMUX_MIN_VERSION, get_version()
431
+ )
432
)
433
else:
434
return False
0 commit comments