Skip to content

Commit

Permalink
Some small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
andres-torres-marroquin committed Dec 19, 2011
1 parent 49d0df2 commit cf751cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions django_dropbox_project/django_dropbox/storage.py
Expand Up @@ -16,8 +16,7 @@
from django.utils.encoding import filepath_to_uri

from .settings import (CONSUMER_KEY, CONSUMER_SECRET,
ACCESS_TYPE, ACCESS_TOKEN, ACCESS_TOKEN_SECRET, CONFIG,
CONTENT_SERVER, PORT, SERVER)
ACCESS_TYPE, ACCESS_TOKEN, ACCESS_TOKEN_SECRET)

class DropboxStorage(Storage):
"""
Expand Down
2 changes: 1 addition & 1 deletion django_dropbox_project/settings.py
Expand Up @@ -11,7 +11,7 @@

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'db.sqlite', # Or path to database file if using sqlite3.
'USER': '', # Not used with sqlite3.
'PASSWORD': '', # Not used with sqlite3.
Expand Down

0 comments on commit cf751cd

Please sign in to comment.