Changeset - 2e265196f302
[Not reviewed]
default
0 1 0
Branko Majic (branko) - 12 years ago 2013-08-17 17:38:42
branko@majic.rs
DMT-1: Fixed typo.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
project/project_name/settings/base.py
Show inline comments
 
@@ -29,25 +29,25 @@ USE_L10N = True
 
USE_TZ = True
 

	
 
# Absolute filesystem path to the directory that will hold user-uploaded
 
# files. Calculated based on project root.
 
MEDIA_ROOT = path.normpath(path.join(ASSETS_ROOT, "media"))
 

	
 
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
 
# trailing slash.
 
MEDIA_URL = '/media/'
 

	
 
# Absolute path to the directory static files should be collected to. Calculated
 
# based on project root.
 
STATIC_ROOT = path.normpah(path.join(ASSETS_ROOT, "static"))
 
STATIC_ROOT = path.normpath(path.join(ASSETS_ROOT, "static"))
 

	
 
# URL prefix for static files.
 
# Example: "http://example.com/static/", "http://static.example.com/"
 
STATIC_URL = '/static/'
 

	
 
# Additional locations of static files
 
STATICFILES_DIRS = (
 
    # Put strings here, like "/home/html/static" or "C:/www/django/static".
 
    # Always use forward slashes, even on Windows.
 
    # Don't forget to use absolute paths, not relative paths.
 
)
 

	
0 comments (0 inline, 0 general)