[Erp5-report] r25006 - /erp5/trunk/utils/erp5mechanize/ERP5Mechanize.py

nobody at svn.erp5.org nobody at svn.erp5.org
Fri Jan 2 17:21:41 CET 2009


Author: seb
Date: Fri Jan  2 17:21:41 2009
New Revision: 25006

URL: http://svn.erp5.org?rev=25006&view=rev
Log:
do not use capital letter for 'in'

Modified:
    erp5/trunk/utils/erp5mechanize/ERP5Mechanize.py

Modified: erp5/trunk/utils/erp5mechanize/ERP5Mechanize.py
URL: http://svn.erp5.org/erp5/trunk/utils/erp5mechanize/ERP5Mechanize.py?rev=25006&r1=25005&r2=25006&view=diff
==============================================================================
--- erp5/trunk/utils/erp5mechanize/ERP5Mechanize.py [utf8] (original)
+++ erp5/trunk/utils/erp5mechanize/ERP5Mechanize.py [utf8] Fri Jan  2 17:21:41 2009
@@ -172,7 +172,7 @@
     self.fillField('__ac_name', name)
     self.fillField('__ac_password', password)
     t = self.timeSubmit()
-    if 'Logged In as' not in self.last_page.get_data(): # XXX: Could use information sent back as headers - but would bind us to a specific authentication scheme.
+    if 'Logged in as' not in self.last_page.get_data(): # XXX: Could use information sent back as headers - but would bind us to a specific authentication scheme.
       raise LoginError
     return t
 




More information about the Erp5-report mailing list