summaryrefslogtreecommitdiff
path: root/asciifarm/client/parseargs.py
diff options
context:
space:
mode:
Diffstat (limited to 'asciifarm/client/parseargs.py')
-rw-r--r--asciifarm/client/parseargs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/asciifarm/client/parseargs.py b/asciifarm/client/parseargs.py
index 9a73adf..a8b393b 100644
--- a/asciifarm/client/parseargs.py
+++ b/asciifarm/client/parseargs.py
@@ -23,7 +23,7 @@ def parse_args(argv):
Kill the goblins and plant the seeds.
~troido""", formatter_class=argparse.RawDescriptionHelpFormatter)
- parser.add_argument('-n', '--name', help='Your player name (must be unique!). Defaults to username on inet sockets and tildename on (unix socket (including abstract)', default=None)
+ parser.add_argument('-n', '--name', help='Your player name (must be unique!). Defaults to username on inet sockets and tildename on unix socket (including abstract). Apart from the tilde in a tildename all characters must be unicode letters, numbers or connection puctuation. The maximum size of a name is 256 bytes when encoded as utf8', default=None)
parser.add_argument("-a", "--address", help="The address of the socket. When the socket type is 'abstract' this is just a name. When it is 'unix' this is a filename. When it is 'inet' is should be in the format 'address:port', eg 'localhost:8080'. Defaults depends on the socket type")
parser.add_argument("-s", "--socket", help="the socket type. 'unix' is unix domain sockets, 'abstract' is abstract unix domain sockets and 'inet' is inet sockets. ", choices=["abstract", "unix", "inet"], default="abstract")
parser.add_argument('-k', '--keybindings', help='The file with the keybinding configuration. This file is a JSON file.', default="default")