|
@@ -1,7 +1,7 @@
|
1
|
1
|
#-*- coding: utf-8 -*-
|
2
|
2
|
|
3
|
3
|
import jinja2
|
4
|
|
-import settings_local
|
|
4
|
+import settings
|
5
|
5
|
|
6
|
6
|
|
7
|
7
|
class TemplateLoader(object):
|
|
@@ -12,7 +12,7 @@ class TemplateLoader(object):
|
12
|
12
|
# it to the root "/". By default, it will be the root of the project, defined in the
|
13
|
13
|
# settings of the application
|
14
|
14
|
# @param follow_links bool : indicates whether or not to follow the symbolic links (default: True)
|
15
|
|
- def __init__(self, search_path=settings_local.base_path, follow_links=True):
|
|
15
|
+ def __init__(self, search_path=settings.base_path, follow_links=True):
|
16
|
16
|
self.search_path = search_path
|
17
|
17
|
self.follow_links = follow_links
|
18
|
18
|
|