Ignore:
Timestamp:
18 Mar 2015, 12:45:09 (10 years ago)
Author:
uli
Message:

pep8, fix doc string.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.ikoba/trunk/src/waeup/ikoba/payments/payment.py

    r12787 r12788  
    261261        """A string representation that can be used in exports.
    262262
    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)
    266268        string = string.replace("u'None'", "None")
    267269        return string
Note: See TracChangeset for help on using the changeset viewer.