[Erp5-report] r30706 - /erp5/trunk/products/ERP5Type/Accessor/Constant.py
nobody at svn.erp5.org
nobody at svn.erp5.org
Wed Nov 18 06:45:23 CET 2009
Author: nicolas.dumazet
Date: Wed Nov 18 06:45:22 2009
New Revision: 30706
URL: http://svn.erp5.org?rev=30706&view=rev
Log:
remove non-ascii character causing a DeprecationWarning
Modified:
erp5/trunk/products/ERP5Type/Accessor/Constant.py
Modified: erp5/trunk/products/ERP5Type/Accessor/Constant.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Type/Accessor/Constant.py?rev=30706&r1=30705&r2=30706&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Type/Accessor/Constant.py [utf8] (original)
+++ erp5/trunk/products/ERP5Type/Accessor/Constant.py [utf8] Wed Nov 18 06:45:22 2009
@@ -56,7 +56,7 @@
def __float__(self):
return float(self.value)
- # following methods are used for < > == !⁼ , etc
+ # following methods are used for < > == != , etc
def __eq__(self, other):
return int(self.value) == int(other)
More information about the Erp5-report
mailing list