Kaydet (Commit) 1c142513 authored tarafından Ian Kelly's avatar Ian Kelly

Fixed #6767: corrected a 2.3 compatibility issue in [9750]. Thanks to tlow.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9761 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst f212b24b
......@@ -7,7 +7,10 @@ Requires cx_Oracle: http://cx-oracle.sourceforge.net/
import os
import datetime
import time
from decimal import Decimal
try:
from decimal import Decimal
except ImportError:
from django.utils._decimal import Decimal
# Oracle takes client-side character set encoding from the environment.
os.environ['NLS_LANG'] = '.UTF8'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment