patch bb3b1764cd938721fa5ff776c4e6a2352b6ef105 Author: E. Bosch Date: Thu Feb 4 15:37:25 CET 2021 * irc: Strip unwanted characters from command parameters diff -rN -u old-irgramd-1/irc.py new-irgramd-1/irc.py --- old-irgramd-1/irc.py 2025-09-13 16:21:12.986811179 +0200 +++ new-irgramd-1/irc.py 2025-09-13 16:21:12.986811179 +0200 @@ -67,6 +67,8 @@ matched = True if user.registered or not register_required: params = matches.groupdict() + # Remove possible extra characters in parameters + params = {x:y.strip() for x,y in params.items()} num_params = len([x for x in params.values() if x]) num_params_expected = len(params.keys()) if num_params >= num_params_expected: