Ignore:
Timestamp:
16 Oct 2015, 17:49:33 (9 years ago)
Author:
Henrik Bettermann
Message:

Line break must be at the end of line0.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.uniben/trunk/src/waeup/uniben/students/browser.py

    r13328 r13335  
    141141        line0 = ''
    142142        if self.context.faccode == 'JUPEB':
    143             line0 = 'Joint Universities Preliminary Examinations Board (JUPEB)'
     143            line0 = 'Joint Universities Preliminary Examinations Board (JUPEB)\n'
    144144        line1 = translate(_('Clearance Slip of'),
    145145            'waeup.kofa', target_language=portal_language) \
    146146            + ' %s' % self.context.display_fullname
    147         return '%s\n%s' % (line0, line1)
     147        return '%s%s' % (line0, line1)
    148148
    149149    def _sigsInFooter(self):
Note: See TracChangeset for help on using the changeset viewer.