Ticket #7139: 7510_oracle_typos.diff

File 7510_oracle_typos.diff, 863 bytes (added by Adam Vandenberg, 16 years ago)
  • django/db/backends/oracle/query.py

     
    11"""
    2 Custom Query class for this backend (a derivative of
    3 django.db.models.sql.query.Query).
     2Custom Query class for Oracle.
     3Derives from: django.db.models.sql.query.Query
    44"""
    55
    66import datetime
     
    1212
    1313def query_class(QueryClass, Database):
    1414    """
    15     Returns a custom djang.db.models.sql.query.Query subclass that is
    16     appropraite for Oracle.
     15    Returns a custom django.db.models.sql.query.Query subclass that is
     16    appropriate for Oracle.
    1717
    1818    The 'Database' module (cx_Oracle) is passed in here so that all the setup
    1919    required to import it only needs to be done by the calling module.
Back to Top