From 541e710521bd5b49a282c8e9db0b75ddbc962231 Mon Sep 17 00:00:00 2001 From: dotcomboom Date: Fri, 8 Feb 2019 18:25:54 -0600 Subject: [PATCH] Update parse_gophermap docstring --- pituophis/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pituophis/__init__.py b/pituophis/__init__.py index 9c8791a..ef8ea3f 100755 --- a/pituophis/__init__.py +++ b/pituophis/__init__.py @@ -305,7 +305,7 @@ def get(host, port=70, path='/', query='', tls=False, tls_verify=True): # Server stuff def parse_gophermap(source, def_host='127.0.0.1', def_port='70', gophermap_dir='/'): """ - *Server.* Converts a Bucktooth-style Gophermap (as a String or List) into a Gopher menu. Returns a List of lines to send. + *Server.* Converts a Bucktooth-style Gophermap (as a String or List) into a Gopher menu as a List of Selectors to send. """ if type(source) == str: source = source.replace('\r\n', '\n').split('\n')