From 966129c9a3d6f703f58ffe6cb2032cddb04168ca Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sat, 21 Aug 2004 08:02:52 +0000 Subject: [PATCH] A docstring doesn't hurt much. --- src/ircutils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ircutils.py b/src/ircutils.py index 4b06c7966..72d21085f 100644 --- a/src/ircutils.py +++ b/src/ircutils.py @@ -309,6 +309,7 @@ def stripUnderline(s): def stripFormatting(s): """Returns the string s, with all formatting removed.""" + # stripColor has to go first because of some strings, check the tests. s = stripColor(s) s = stripBold(s) s = stripReverse(s)