From fb9e9a9f01b861abcc22fc38cc2049eecc8168ec Mon Sep 17 00:00:00 2001 From: Noah Petherbridge Date: Wed, 9 Apr 2014 15:15:45 -0700 Subject: [PATCH] Fix default SITE_ROOT --- config-sample.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config-sample.py b/config-sample.py index e2fb7f8..b85b227 100644 --- a/config-sample.py +++ b/config-sample.py @@ -17,8 +17,7 @@ SITE_NAME = "example.com" # Rophako pages, e.g. for account, blog, photo albums and so on, have templates # in the default site. You can override those templates by creating files with # the same paths in your site's HTML folder. -#SITE_ROOT = os.path.join(_basedir, "site", "www") -SITE_ROOT = "/home/noah/git/kirsle.net/www" +SITE_ROOT = os.path.join(_basedir, "site", "www") # E-mail addresses for site notifications (i.e. new comments). NOTIFY_ADDRESS = ["root@localhost"]