From 843a11d738078aa1ea32187acb43f84ee4a33b0c Mon Sep 17 00:00:00 2001 From: Pawel Solyga Date: Mon, 1 Dec 2008 12:35:56 +0000 Subject: [PATCH] Add missing dot and correctly sort imports in soc.logic.helper.notifications module. Patch by: Pawel Solyga --- app/soc/logic/helper/notifications.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/app/soc/logic/helper/notifications.py b/app/soc/logic/helper/notifications.py index b1c53f38..238c5bcc 100644 --- a/app/soc/logic/helper/notifications.py +++ b/app/soc/logic/helper/notifications.py @@ -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. -- 2.11.4.GIT