Skip to content

Commit

Permalink
Fixed typo in django/db/backends/sqlite3/operations.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
yevgnenll authored and timgraham committed Jan 23, 2016
1 parent e72a495 commit 5925e20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/db/backends/sqlite3/operations.py
Expand Up @@ -108,7 +108,7 @@ def _quote_params_for_last_executed_query(self, params):
Only for last_executed_query! Don't use this to execute SQL queries!
"""
# This function is limited both by SQLITE_LIMIT_VARIABLE_NUMBER (the
# number of paramters, default = 999) and SQLITE_MAX_COLUMN (the
# number of parameters, default = 999) and SQLITE_MAX_COLUMN (the
# number of return values, default = 2000). Since Python's sqlite3
# module doesn't expose the get_limit() C API, assume the default
# limits are in effect and split the work in batches if needed.
Expand Down

0 comments on commit 5925e20

Please sign in to comment.