diff options
| author | troido <troido@hotmail.com> | 2018-04-14 18:21:16 +0200 |
|---|---|---|
| committer | troido <troido@hotmail.com> | 2018-04-14 18:21:16 +0200 |
| commit | 074b53058f8f7dd3b3f4e34fc6bc2ed430b15a0d (patch) | |
| tree | a0ad9787ca597c249e28885c4a45479ebf79133d | |
| parent | aa5b7c9d753f6f140d7f55d0089e6e19028031b7 (diff) | |
removed references to hy from the docs
| -rwxr-xr-x | asciifarm/client/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asciifarm/client/main.py b/asciifarm/client/main.py index ece3c5a..da556ef 100755 --- a/asciifarm/client/main.py +++ b/asciifarm/client/main.py @@ -35,7 +35,7 @@ def main(argv=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)', 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 script with the keybindings. This file is a snippet of hy script.', default="keybindings") + parser.add_argument('-k', '--keybindings', help='The file with the keybinding configuration. This file is a JSON file.', default="keybindings") parser.add_argument('-c', '--characters', help='The file with the character mappings for the graphics. If it is either of these names: {} it will be loaded from the charmaps directory.'.format(standardCharFiles), default="default") parser.add_argument('-o', '--logfile', help='All game messages will be written to this file.'.format(standardCharFiles), default=None) |
