app/django/db/backends/sqlite3/client.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sun, 12 Oct 2008 00:08:54 +0000
changeset 298 c76a366c7ab4
parent 54 03e267d67478
child 323 ff1a9aa48cfd
permissions -rw-r--r--
Replace almost all occurences of linkname with link_name In an attempt to have some atomicness in these commits this patch does a rename for the sake of consistency. Not all were changed, but the next commit will address that. Patch by: Sverre Rabbelier Reviewed by: to-be-reviewed

from django.conf import settings
import os

def runshell():
    args = ['', settings.DATABASE_NAME]
    os.execvp('sqlite3', args)