diff options
author | Parth Buch | 2012-07-20 13:24:08 +0530 |
---|---|---|
committer | Parth Buch | 2012-07-20 13:24:08 +0530 |
commit | 1f1c2549a0b4ed4f6ffe42663b93f21eef3b4afb (patch) | |
tree | bacb49012bc56a88a4ee2f9fc09d32a9cb0be53c /stapp | |
parent | 80bc51c364c5b32d9105573ee68b9c9e0c8e3cb6 (diff) | |
download | stproject-1f1c2549a0b4ed4f6ffe42663b93f21eef3b4afb.tar.gz stproject-1f1c2549a0b4ed4f6ffe42663b93f21eef3b4afb.tar.bz2 stproject-1f1c2549a0b4ed4f6ffe42663b93f21eef3b4afb.zip |
Added media_root directive to upload files
Diffstat (limited to 'stapp')
-rw-r--r-- | stapp/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stapp/settings.py b/stapp/settings.py index 986bb7d..63e4b78 100644 --- a/stapp/settings.py +++ b/stapp/settings.py @@ -36,7 +36,7 @@ USE_L10N = True # Absolute filesystem path to the directory that will hold user-uploaded files. # Example: "/home/media/media.lawrence.com/media/" -MEDIA_ROOT = os.path.join(PROJECT_DIR, "media"), +MEDIA_ROOT = os.path.join(PROJECT_DIR, "media") # URL that handles the media served from MEDIA_ROOT. Make sure to use a # trailing slash. |