Sumana Harihareswara has proposed merging 
lp:~sumanah/postorius/held-msg-docstring into lp:postorius.

Requested reviews:
  Abhilash Raj (raj-abhilash1)

For more details, see:
https://code.launchpad.net/~sumanah/postorius/held-msg-docstring/+merge/256334

The docstrings for dealing with held messages are inaccurate - this fixes that.
-- 
Your team Mailman Coders is subscribed to branch lp:postorius.
=== modified file 'src/postorius/views/list.py'
--- src/postorius/views/list.py	2015-04-14 18:40:12 +0000
+++ src/postorius/views/list.py	2015-04-15 14:55:07 +0000
@@ -503,7 +503,7 @@
 
 @list_moderator_required
 def discard_held_message(request, list_id, msg_id):
-    """Accepts a held message.
+    """Discards a held message.
     """
     try:
         the_list = List.objects.get_or_404(fqdn_listname=list_id)
@@ -519,7 +519,7 @@
 
 @list_moderator_required
 def defer_held_message(request, list_id, msg_id):
-    """Accepts a held message.
+    """Defers a held message for a later decision.
     """
     try:
         the_list = List.objects.get_or_404(fqdn_listname=list_id)
@@ -529,13 +529,13 @@
     except HTTPError, e:
         messages.error(request, e.msg)
         return redirect('list_held_messages', the_list.list_id)
-    messages.success(request, 'The message has been defered.')
+    messages.success(request, 'The message has been deferred.')
     return redirect('list_held_messages', the_list.list_id)
 
 
 @list_moderator_required
 def reject_held_message(request, list_id, msg_id):
-    """Accepts a held message.
+    """Rejects a held message.
     """
     try:
         the_list = List.objects.get_or_404(fqdn_listname=list_id)

_______________________________________________
Mailman-coders mailing list
[email protected]
https://mail.python.org/mailman/listinfo/mailman-coders

Reply via email to