Skip to content

Commit

Permalink
fix issue andres-torres-marroquin#6, has to config access_type in set…
Browse files Browse the repository at this point in the history
…tings
  • Loading branch information
leonardoo committed Sep 16, 2014
1 parent fad5171 commit a3e2dc2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions django_dropbox/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@
CACHE_TIMEOUT = getattr(settings, 'DROPBOX_CACHE_TIMEOUT', 3600 * 24 * 365) # One year

# ACCESS_TYPE should be 'dropbox' or 'app_folder' as configured for your app
ACCESS_TYPE = 'dropbox'

ACCESS_TYPE = getattr(settings, 'ACCESS_TYPE', 'dropbox')

0 comments on commit a3e2dc2

Please sign in to comment.