diff options
| author | 2013-03-13 20:58:39 -0300 | |
|---|---|---|
| committer | 2013-03-13 20:58:39 -0300 | |
| commit | 8b14a1e5b2ca574fdd4fd2377567ec98a110d4b6 (patch) | |
| tree | 0895935489e4920d18824f7fb3a0d799649a27c3 /extra_plugins/task_mustache/__init__.py | |
| parent | 878ba1152ebc64a4a2609d23c9e400a6111db642 (diff) | |
Imported Upstream version 5.4.2upstream/5.4.2
Diffstat (limited to 'extra_plugins/task_mustache/__init__.py')
| -rw-r--r-- | extra_plugins/task_mustache/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extra_plugins/task_mustache/__init__.py b/extra_plugins/task_mustache/__init__.py index 0d0e87d..8b5ec13 100644 --- a/extra_plugins/task_mustache/__init__.py +++ b/extra_plugins/task_mustache/__init__.py @@ -73,7 +73,8 @@ class Mustache(Task): # Configuration for k, v in self.site.config.items(): - if isinstance(v, (str, unicode)): + # FIXME: not py3 ready + if isinstance(v, (str, unicode)): # NOQA data[k] = v # Tag data |
