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 00654dc commit ab1fffaCopy full SHA for ab1fffa
doc/api.rst
@@ -73,6 +73,8 @@ Exceptions
73
74
.. autoexception:: libtmux.exc.TmuxSessionExists
75
76
+.. autoexception:: libtmux.exc.BadSessionName
77
+
78
.. autoexception:: libtmux.exc.UnknownOption
79
80
Test tools
libtmux/exc.py
@@ -22,7 +22,7 @@ class TmuxSessionExists(LibTmuxException):
22
23
class BadSessionName(LibTmuxException):
24
25
- """Session name is not allowed."""
+ """Disallowed session name for tmux (empty, contains periods or colons)."""
26
27
pass
28
0 commit comments