From 5cbbac715525ef0396b00c838c25d37d7b39cb2c Mon Sep 17 00:00:00 2001 From: Richard Chien Date: Wed, 11 Jan 2017 21:12:32 +0800 Subject: [PATCH] Fix bug --- commands/sudo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/sudo.py b/commands/sudo.py index b96e1db8..9324ecc4 100644 --- a/commands/sudo.py +++ b/commands/sudo.py @@ -69,7 +69,7 @@ def block_list(_, ctx_msg, internal=False): # This is a shit code, and should be changed later sometime. core.echo('已屏蔽的用户:\n' + ', '.join([t[1:] for t in blocked_targets]), ctx_msg) else: - core.echo('还没有屏蔽过用户') + core.echo('还没有屏蔽过用户', ctx_msg) @cr.register('unblock')