diff options
author | Parth Buch | 2011-07-20 19:42:16 +0530 |
---|---|---|
committer | Parth Buch | 2011-07-20 19:42:16 +0530 |
commit | 0e0675149e7a2b29305d0a5d09f2ec8cf28a73e3 (patch) | |
tree | a7e0abd3c026896d2f0d2695220141c752a41868 | |
parent | 6c8732b819ce155f24999a535933f50dddddb834 (diff) | |
download | pytask-0e0675149e7a2b29305d0a5d09f2ec8cf28a73e3.tar.gz pytask-0e0675149e7a2b29305d0a5d09f2ec8cf28a73e3.tar.bz2 pytask-0e0675149e7a2b29305d0a5d09f2ec8cf28a73e3.zip |
Changed the MEDIA_ROOT to uploads
-rwxr-xr-x | pytask/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pytask/settings.py b/pytask/settings.py index 61b5cf7..6d044e8 100755 --- a/pytask/settings.py +++ b/pytask/settings.py @@ -60,7 +60,7 @@ USE_L10N = True # Absolute filesystem path to the directory that will hold user-uploaded files. # Example: "/home/media/media.lawrence.com/" -MEDIA_ROOT = os.path.join(os.path.dirname(__file__), 'media') +MEDIA_ROOT = os.path.join(os.path.dirname(__file__), 'uploads') # URL that handles the media served from MEDIA_ROOT. Make sure to use a # trailing slash if there is a path component (optional in other cases). |