fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fixed importing books from Django admin.
[wolnelektury.git]
/
apps
/
south
/
db
/
sqlite3.py
1
2
from django.db import connection
3
from south.db import generic
4
5
class DatabaseOperations(generic.DatabaseOperations):
6
7
"""
8
SQLite3 implementation of database operations.
9
"""
10
11
def __init__(self):
12
raise NotImplementedError("Support for SQLite3 is not yet complete.")