We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20b50c9 commit dcfaa32Copy full SHA for dcfaa32
src/libtmux/common.py
@@ -233,7 +233,7 @@ class tmux_cmd:
233
def __init__(self, *args: t.Any, **kwargs: t.Any) -> None:
234
tmux_bin = shutil.which("tmux")
235
if not tmux_bin:
236
- raise (exc.TmuxCommandNotFound)
+ raise exc.TmuxCommandNotFound()
237
238
cmd = [tmux_bin]
239
cmd += args # add the command arguments to cmd
0 commit comments