Changeset 12788 for main/waeup.ikoba/trunk/src/waeup/ikoba
- Timestamp:
- 18 Mar 2015, 12:45:09 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.ikoba/trunk/src/waeup/ikoba/payments/payment.py
r12787 r12788 261 261 """A string representation that can be used in exports. 262 262 263 Returned is a unicode string of format ``(u'<TITLE>',u'<FEE>',u'<CURR>')``. 264 """ 265 string = u"(u'%s', u'%s', u'%s')" % (self.item_id, self.title, self.amount) 263 Returned is a unicode string of format 264 ``(u'<ITEM_ID>', u'<TITLE>', u'<AMOUNT>')``. 265 """ 266 string = u"(u'%s', u'%s', u'%s')" % ( 267 self.item_id, self.title, self.amount) 266 268 string = string.replace("u'None'", "None") 267 269 return string
Note: See TracChangeset for help on using the changeset viewer.