home · contact · privacy
Server/py: Improve doc string.
authorChristian Heller <c.heller@plomlompom.de>
Tue, 17 Feb 2015 05:29:57 +0000 (06:29 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Tue, 17 Feb 2015 05:29:57 +0000 (06:29 +0100)
plomrogue-server.py

index 286d3eb362b86b36707756479680fc1321396f7f..6760c0287752fffef9f27e53d291a91c04e04a92 100755 (executable)
@@ -61,7 +61,7 @@ def obey(msg):
 
 
 def tokenize(string):
-    """Divide string by " ", \t and quotes (that also group). Escape with \."""
+    """Divide string by ' ', \t & " quotes (that also group). Escape with \."""
     charlist_A = list(string)
     i = 0
     for c in charlist_A: