• 
      

    Fix typo in the default encoding name

    Review Request #6561 — Created Nov. 6, 2014 and submitted

    Information

    Review Board

    Reviewers

    The iso-5589-15 is invalid encoding name, iso-8859-15 is the correct one

    Encoding names were tested in the Python shell:

    >>> u"test".encode('iso-5589-15')
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    LookupError: unknown encoding: iso-5589-15
    >>> u"test".encode('iso-8859-15')
    'test'
    
    reviewbot
    1. Tool: Pyflakes
      Processed Files:
          reviewboard/scmtools/models.py
      
      
    2. 
        
    david
    1. Ship It!

    2. 
        
    hdima
    Review request changed
    Status:
    Completed
    Change Summary:
    Pushed to release-2.0.x (fb3cc59)