Skip to content

Commit

Permalink
Cleaned up some comments in the Oracle backend. Fixes #7139. Thanks, …
Browse files Browse the repository at this point in the history
…adamv.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@7514 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
nightflyerkilo committed May 5, 2008
1 parent 1dee309 commit 3c4d353
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions django/db/backends/oracle/query.py
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,6 @@
""" """
Custom Query class for this backend (a derivative of Custom Query class for Oracle.
django.db.models.sql.query.Query). Derives from: django.db.models.sql.query.Query
""" """


import datetime import datetime
Expand All @@ -12,8 +12,8 @@


def query_class(QueryClass, Database): def query_class(QueryClass, Database):
""" """
Returns a custom djang.db.models.sql.query.Query subclass that is Returns a custom django.db.models.sql.query.Query subclass that is
appropraite for Oracle. appropriate for Oracle.
The 'Database' module (cx_Oracle) is passed in here so that all the setup The 'Database' module (cx_Oracle) is passed in here so that all the setup
required to import it only needs to be done by the calling module. required to import it only needs to be done by the calling module.
Expand Down

0 comments on commit 3c4d353

Please sign in to comment.