diff options
Diffstat (limited to 'mediagoblin/moderation/tools.py')
-rw-r--r-- | mediagoblin/moderation/tools.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mediagoblin/moderation/tools.py b/mediagoblin/moderation/tools.py index 49d4381e..79a6e3f5 100644 --- a/mediagoblin/moderation/tools.py +++ b/mediagoblin/moderation/tools.py @@ -163,7 +163,7 @@ def give_privileges(user,*privileges): def ban_user(user_id, expiration_date=None, reason=None): """ This function is used to ban a user. If the user is already banned, the - function returns False. If the user is not already banned, this function + function returns False. If the user is not already banned, this function bans the user using the arguments to build a new UserBan object. :returns False if the user is already banned and the ban is not updated @@ -177,7 +177,7 @@ def ban_user(user_id, expiration_date=None, reason=None): user_id=user_id, expiration_date=expiration_date, reason=reason) - return new_user_ban + return new_user_ban def unban_user(user_id): """ |