From 6fcfcf3f32c0c9aacd9342dfb34504fe59ffedca Mon Sep 17 00:00:00 2001 From: Zev Benjamin Date: Mon, 12 Aug 2013 14:49:34 -0400 Subject: [PATCH] Fix comment (imported from commit 6f8eac90e5b011bd25b09e562ebcb9d2cae39a06) --- zerver/lib/actions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zerver/lib/actions.py b/zerver/lib/actions.py index 7ed495d843..8d50a55bb6 100644 --- a/zerver/lib/actions.py +++ b/zerver/lib/actions.py @@ -375,8 +375,8 @@ def extract_recipients(raw_recipients): return list(set(recipient for recipient in recipients if recipient)) # check_send_message: -# Returns None on success or the error message on error. -# has same argspec as check_message +# Returns the id of the sent message on success or the error message on error. +# Has same argspec as check_message def check_send_message(*args, **kwargs): message = check_message(*args, **kwargs) if(type(message) != dict):