david / semanticdjango (http://semanticdjango.org/)

fork of django-trunk

The right time for a semantic contrib, that's my pony.

Clone this repository (size: 23.1 MB): HTTPS / SSH
$ hg clone http://code.welldev.org/semanticdjango
commit 6473: 4495a99a3b56
parent 6472: 405453bb2733
branch: default
Fixed #6767: corrected a 2.3 compatibility issue in [9750]. Thanks to tlow.
ikelly
19 months ago

Changed (Δ75 bytes):

raw changeset »

django/db/backends/oracle/base.py (4 lines added, 1 lines removed)

Up to file-list django/db/backends/oracle/base.py:

@@ -7,7 +7,10 @@ Requires cx_Oracle: http://cx-oracle.sou
7
7
import os
8
8
import datetime
9
9
import time
10
from decimal import Decimal
10
try:
11
    from decimal import Decimal
12
except ImportError:
13
    from django.utils._decimal import Decimal
11
14
12
15
# Oracle takes client-side character set encoding from the environment.
13
16
os.environ['NLS_LANG'] = '.UTF8'