]> git.aero2k.de Git - urlbot-v3.git/commitdiff
fix error message
authorThorsten S <mail@aero2k.de>
Wed, 19 Dec 2018 17:53:35 +0000 (18:53 +0100)
committerThorsten S <mail@aero2k.de>
Wed, 19 Dec 2018 17:53:35 +0000 (18:53 +0100)
distbot/plugins/basic.py

index 13762748c1b35bf4fdbae319c5b31cd5fe28a01a..6af2892fbf6510ce60403acc380722138c1a0ee6 100644 (file)
@@ -199,7 +199,7 @@ class Choose(Worker):
             words.pop(0)  # remove sudo from args
             sudoers = conf_get('sudoers') or []
             if sender not in sudoers:
-                return Action(msg="{} is not in the sudoers file.  This incident will be reported.")
+                return Action(msg="{} is not in the sudoers file.  This incident will be reported.".format(sender))
 
         alternatives = words[1:]
         logger.debug("Alternatives: %s", str(alternatives))