Django

Code

Changeset 2731

Show
Ignore:
Timestamp:
04/23/06 16:30:04 (3 years ago)
Author:
adrian
Message:

magic-removal: Fixed #1536 -- FilePathField? with recursive=True no longer loses subdirectory. Thanks, Andy Dustman

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/magic-removal/django/forms/__init__.py

    r2502 r2731  
    880880                for f in files: 
    881881                    if match is None or match_re.search(f): 
    882                         choices.append((os.path.join(path, f), f)) 
     882                        choices.append((os.path.join(root, f), f)) 
    883883        else: 
    884884            try: