summaryrefslogtreecommitdiff
path: root/pystache/defaults.py
blob: b9156d6db61acd24477379ca6842300c53b748fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# coding: utf-8

"""
This module provides a central location for defining default behavior.

"""

# How to handle encoding errors when decoding strings from str to unicode.
#
# This value is passed as the "errors" argument to Python's built-in
# unicode() function:
#
#   http://docs.python.org/library/functions.html#unicode
#
DECODE_ERRORS = 'strict'

# The default template extension.
TEMPLATE_EXTENSION = 'mustache'