Django

Code

Changeset 1345

Show
Ignore:
Timestamp:
11/21/05 23:00:53 (3 years ago)
Author:
adrian
Message:

Tiny change to spacing in new-admin django.core.formfields, so it's identical to trunk version

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/new-admin/django/core/formfields.py

    r1321 r1345  
    174174 
    175175    def get_id(self): 
    176         return self.formfield.get_id() 
     176        return self.formfield.get_id() 
    177177 
    178178class FormFieldCollection(FormFieldWrapper): 
     
    321321    def get_id(self): 
    322322        "Returns the HTML 'id' attribute for this form field." 
    323         return  FORM_FIELD_ID_PREFIX + self.field_name   
     323        return FORM_FIELD_ID_PREFIX + self.field_name 
     324 
    324325#################### 
    325326# GENERIC WIDGETS  #