Changeset 2731
- Timestamp:
- 04/23/06 16:30:04 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/magic-removal/django/forms/__init__.py
r2502 r2731 880 880 for f in files: 881 881 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)) 883 883 else: 884 884 try:
