[Erp5-report] r35684 fabien - /erp5/trunk/products/ERP5/interfaces/encrypted_password.py
nobody at svn.erp5.org
nobody at svn.erp5.org
Thu May 27 16:52:42 CEST 2010
Author: fabien
Date: Thu May 27 16:52:41 2010
New Revision: 35684
URL: http://svn.erp5.org?rev=35684&view=rev
Log:
remove self, thanks to nicolas for the review
Modified:
erp5/trunk/products/ERP5/interfaces/encrypted_password.py
Modified: erp5/trunk/products/ERP5/interfaces/encrypted_password.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/interfaces/encrypted_password.py?rev=35684&r1=35683&r2=35684&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/interfaces/encrypted_password.py [utf8] (original)
+++ erp5/trunk/products/ERP5/interfaces/encrypted_password.py [utf8] Thu May 27 16:52:41 2010
@@ -37,22 +37,22 @@
encrypted password.
"""
- def checkPassword(self, value):
+ def checkPassword(value):
"""
Check the password, usefull when changing password
"""
- def setEncodedPassword(self, value, format='default'):
+ def setEncodedPassword(value, format='default'):
"""
Set an already encoded password.
"""
- def setPassword(self, value) :
+ def setPassword(value) :
"""
Set the password, only if the password is not empty.
"""
- def getPassword(self, *args, **kw):
+ def getPassword(*args, **kw):
"""
Retrieve password in desired format.
More information about the Erp5-report
mailing list