diff options
author | Tim Graham <timograham@gmail.com> | 2015-01-12 15:20:40 -0500 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2015-01-14 14:16:20 -0500 |
commit | 28308078f397d1de36fd0da417ac7da2544ba12d (patch) | |
tree | 80207ff582b2350d058c1c7c49072b761391c04f /django/db/backends/oracle/client.py | |
parent | 737d24923ac69bb8b89af1bb2f3f4c4c744349e8 (diff) | |
download | django-28308078f397d1de36fd0da417ac7da2544ba12d.tar.gz |
Fixed #22603 -- Reorganized classes in django.db.backends.
Diffstat (limited to 'django/db/backends/oracle/client.py')
-rw-r--r-- | django/db/backends/oracle/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/oracle/client.py b/django/db/backends/oracle/client.py index 75be718d6f..da4f5af275 100644 --- a/django/db/backends/oracle/client.py +++ b/django/db/backends/oracle/client.py @@ -1,6 +1,6 @@ import subprocess -from django.db.backends import BaseDatabaseClient +from django.db.backends.base.client import BaseDatabaseClient class DatabaseClient(BaseDatabaseClient): |