app/django/db/backends/sqlite3/client.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Tue, 23 Sep 2008 19:20:57 +0000
changeset 188 27ed1a09c98d
parent 54 03e267d67478
child 323 ff1a9aa48cfd
permissions -rw-r--r--
Changes in TinyMCE widget in custom_widgets.py based on review comments. Patch by: Pawel Solyga Review url: http://code.google.com/p/soc/source/detail?r=550

from django.conf import settings
import os

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