Django

Code

Show
Ignore:
Timestamp:
08/27/08 18:05:25 (3 months ago)
Author:
jacob
Message:

Fixed #8276: corrected another couple of names in localflavor.pl.forms. Patch by Piotr Lewandowski.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/contrib/localflavor/pl/forms.py

    r8345 r8643  
    1717        super(PLProvinceSelect, self).__init__(attrs, choices=VOIVODESHIP_CHOICES) 
    1818 
    19 class PLCountiesSelect(Select): 
     19class PLCountySelect(Select): 
    2020    """ 
    2121    A select widget with list of Polish administrative units as choices. 
     
    2323    def __init__(self, attrs=None): 
    2424        from pl_administrativeunits import ADMINISTRATIVE_UNIT_CHOICES 
    25         super(PLCountiesSelect, self).__init__(attrs, choices=ADMINISTRATIVE_UNIT_CHOICES) 
     25        super(PLCountySelect, self).__init__(attrs, choices=ADMINISTRATIVE_UNIT_CHOICES) 
    2626 
    2727class PLPESELField(RegexField):