From 14f636edbfe63d1dd6438a8738397166e8eaef71 Mon Sep 17 00:00:00 2001 From: nishanth Date: Thu, 4 Feb 2010 23:24:20 +0530 Subject: added *.db to hgignore and made database path to pytask.db in settings.py --- .hgignore | 1 + settings.py | 2 +- taskapp/__init__.pyc | Bin 142 -> 142 bytes taskapp/admin.pyc | Bin 423 -> 463 bytes taskapp/models.pyc | Bin 4331 -> 4637 bytes 5 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.hgignore b/.hgignore index 0a69a2b..899d580 100644 --- a/.hgignore +++ b/.hgignore @@ -1,6 +1,7 @@ # use glob syntax. syntax: glob +*.db *.pyc *.zip *~ diff --git a/settings.py b/settings.py index 5ecaa27..4f70f7a 100644 --- a/settings.py +++ b/settings.py @@ -10,7 +10,7 @@ ADMINS = ( MANAGERS = ADMINS DATABASE_ENGINE = 'sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. -DATABASE_NAME = '../../pytask.db' # Or path to database file if using sqlite3. +DATABASE_NAME = 'pytask.db' # Or path to database file if using sqlite3. DATABASE_USER = '' # Not used with sqlite3. DATABASE_PASSWORD = '' # Not used with sqlite3. DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3. diff --git a/taskapp/__init__.pyc b/taskapp/__init__.pyc index ed6d00f..c81884e 100644 Binary files a/taskapp/__init__.pyc and b/taskapp/__init__.pyc differ diff --git a/taskapp/admin.pyc b/taskapp/admin.pyc index c2f88b1..b9eb023 100644 Binary files a/taskapp/admin.pyc and b/taskapp/admin.pyc differ diff --git a/taskapp/models.pyc b/taskapp/models.pyc index dc7b9c4..ee07db6 100644 Binary files a/taskapp/models.pyc and b/taskapp/models.pyc differ -- cgit