-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -217,7 +217,7 @@ def init(self): | |
epilog=( | ||
"If the network supports SASL authentication you can configure them with this command.\n" | ||
"If your password contains special characters, use shell escaping.\n" | ||
"Example: SASL \"pass;word\"\n" | ||
'Example: SASL "pass;word"\n' | ||
"\n" | ||
"Note: Bridge administrators can trivially see the stored password if they want to.\n" | ||
), | ||
|
@@ -259,7 +259,7 @@ def init(self): | |
"\n" | ||
'Example (QuakeNet): AUTOCMD "UMODE +x; MSG -s [email protected] auth foo bar"\n' | ||
"Example (OFTC): AUTOCMD NICKSERV -s identify foo bar\n" | ||
"Example (special characters): AUTOCMD \"NICKSERV -s \\\"identify special;'chars\\\"\"\n" | ||
'Example (special characters): AUTOCMD "NICKSERV -s \\"identify special;\'chars\\""\n' | ||
), | ||
) | ||
cmd.add_argument("command", nargs="*", help="commands separated with ';'") | ||
|
@@ -351,7 +351,7 @@ def init(self): | |
description="send a message to NickServ (if supported by network)", | ||
epilog=( | ||
"If your password contains special characters, use shell escaping.\n" | ||
"Example: NICKSERV \"identify pass;word\"\n" | ||
'Example: NICKSERV "identify pass;word"\n' | ||
"Alias: NS" | ||
), | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters