Ignore:
Timestamp:
8 Apr 2016, 10:45:33 (8 years ago)
Author:
Henrik Bettermann
Message:

Replace Naira symbol by 'NGN.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/browser/pdf.py

    r13619 r13817  
     1# -*- coding: utf-8 -*-
    12## $Id$
    23##
     
    117118    - just replace newlines by <br> tags
    118119    """
     120    if u'₦' in html:
     121        html = html.replace(u'₦', u'NGN')
    119122    if '</' in html:
    120123        html = html.replace('</div>', '</div><br />')
Note: See TracChangeset for help on using the changeset viewer.