From 0b0f625f6c35880af7799cfd1883c743ee244789 Mon Sep 17 00:00:00 2001
From: Sebastien Robin <seb@nexedi.com>
Date: Mon, 3 Jan 2011 22:04:54 +0000
Subject: [PATCH] fixed typo error

git-svn-id: https://svn.erp5.org/repos/experimental@1952 bc57dcba-3610-0410-ab4f-dc20bb96b918
---
 product/ERP5ShortMessage/Document/EssendexGateway.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/product/ERP5ShortMessage/Document/EssendexGateway.py b/product/ERP5ShortMessage/Document/EssendexGateway.py
index 93f713f66e..f0461168ec 100644
--- a/product/ERP5ShortMessage/Document/EssendexGateway.py
+++ b/product/ERP5ShortMessage/Document/EssendexGateway.py
@@ -97,7 +97,7 @@ class EssendexGateway(XMLObject):
       """Transform url of phone number to a valid phone number (gateway side)"""
       phone = phone.replace('tel:', '').replace('+','').replace('(0)','').replace('-','')
       # Check that phone number can not be something not existing
-      assert not(phone.startwith('99000'))
+      assert not(phone.startswith('99000'))
       return phone
 
     security.declareProtected(Permissions.ManagePortal, 'send')
-- 
2.30.9