summaryrefslogtreecommitdiff
path: root/pystache/loader.py
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2011-12-10 20:43:46 -0800
committerChris Jerdonek <chris.jerdonek@gmail.com>2011-12-10 20:43:46 -0800
commit16aaa7f8a3d06e17ba044e8fa7dbb13d02dd8854 (patch)
tree22d90ef5f2a289c5e6f52b62310942276828d1a0 /pystache/loader.py
parent40a4b23c27e47b46b0655540b7362c7686604d56 (diff)
downloadpystache-16aaa7f8a3d06e17ba044e8fa7dbb13d02dd8854.tar.gz
Switched to using os.curdir in the Loader class.
Diffstat (limited to 'pystache/loader.py')
-rw-r--r--pystache/loader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pystache/loader.py b/pystache/loader.py
index 9830544..8217fd5 100644
--- a/pystache/loader.py
+++ b/pystache/loader.py
@@ -10,7 +10,7 @@ import os
class Loader(object):
- template_path = '.'
+ template_path = os.curdir # i.e. "."
def __init__(self, search_dirs=None, encoding=None, extension=None):
"""