diff options
author | nishanth | 2010-02-04 23:24:20 +0530 |
---|---|---|
committer | nishanth | 2010-02-04 23:24:20 +0530 |
commit | 14f636edbfe63d1dd6438a8738397166e8eaef71 (patch) | |
tree | deb3b0b7cc6c40c72c73be6385b2f752fb90b815 | |
parent | 6caed12f4ad855bef68f956a77853c0ab7aeed2e (diff) | |
download | pytask-14f636edbfe63d1dd6438a8738397166e8eaef71.tar.gz pytask-14f636edbfe63d1dd6438a8738397166e8eaef71.tar.bz2 pytask-14f636edbfe63d1dd6438a8738397166e8eaef71.zip |
added *.db to hgignore and made database path to pytask.db in settings.py
-rw-r--r-- | .hgignore | 1 | ||||
-rw-r--r-- | settings.py | 2 | ||||
-rw-r--r-- | taskapp/__init__.pyc | bin | 142 -> 142 bytes | |||
-rw-r--r-- | taskapp/admin.pyc | bin | 423 -> 463 bytes | |||
-rw-r--r-- | taskapp/models.pyc | bin | 4331 -> 4637 bytes |
5 files changed, 2 insertions, 1 deletions
@@ -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 Binary files differindex ed6d00f..c81884e 100644 --- a/taskapp/__init__.pyc +++ b/taskapp/__init__.pyc diff --git a/taskapp/admin.pyc b/taskapp/admin.pyc Binary files differindex c2f88b1..b9eb023 100644 --- a/taskapp/admin.pyc +++ b/taskapp/admin.pyc diff --git a/taskapp/models.pyc b/taskapp/models.pyc Binary files differindex dc7b9c4..ee07db6 100644 --- a/taskapp/models.pyc +++ b/taskapp/models.pyc |