# HG changeset patch # User Pawel Solyga # Date 1228134956 0 # Node ID 22ec01fdf8f40dcc263c18b28d13b947f7ecff07 # Parent 86ec079d8302201ecd5f44a0335223dfa8d1835f Add missing dot and correctly sort imports in soc.logic.helper.notifications module. Patch by: Pawel Solyga diff -r 86ec079d8302 -r 22ec01fdf8f4 app/soc/logic/helper/notifications.py --- a/app/soc/logic/helper/notifications.py Mon Dec 01 12:34:55 2008 +0000 +++ b/app/soc/logic/helper/notifications.py Mon Dec 01 12:35:56 2008 +0000 @@ -14,29 +14,28 @@ # See the License for the specific language governing permissions and # limitations under the License. -"""Helper functions for sending out notifications +"""Helper functions for sending out notifications. """ __authors__ = [ '"Lennard de Rijk" ', ] + +import os + from google.appengine.api import users from django.utils.translation import ugettext_lazy from soc.logic import mail_dispatcher from soc.logic.models import user as user_logic - from soc.views.helper import redirects -import os - DEF_INVITATION_FMT = ugettext_lazy( "Invitation to become a %(role)s for %(group)s") - def sendInviteNotification(entity): """Sends out an invite notification to the user the request is for.