Django

Code

Changeset 5852

Show
Ignore:
Timestamp:
08/11/07 06:11:16 (1 year ago)
Author:
mtredinnick
Message:

Fixed #4827 -- Fixed a problem when converting Unicode table names to upper-case in Oracle backend. Based on a patch from timchen119@gmail.com.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/core/management.py

    r5809 r5852  
    6666            all_models.append(model) 
    6767    if backend.uses_case_insensitive_names: 
    68         converter = str.upper 
     68        converter = lambda x: x.upper() 
    6969    else: 
    7070        converter = lambda x: x