Commit fc9f9659 by Chris Jerdonek

Changed more relative imports to absolute for Python 2.4 support.

parent b2434c02
...@@ -10,7 +10,7 @@ from __future__ import with_statement ...@@ -10,7 +10,7 @@ from __future__ import with_statement
import os import os
import sys import sys
from . import defaults from pystache import defaults
from pystache.locator import Locator from pystache.locator import Locator
......
...@@ -9,7 +9,7 @@ import os ...@@ -9,7 +9,7 @@ import os
import re import re
import sys import sys
from . import defaults from pystache import defaults
class Locator(object): class Locator(object):
......
...@@ -5,7 +5,7 @@ This module provides a Renderer class to render templates. ...@@ -5,7 +5,7 @@ This module provides a Renderer class to render templates.
""" """
from . import defaults from pystache import defaults
from pystache.context import Context from pystache.context import Context
from pystache.loader import Loader from pystache.loader import Loader
from pystache.renderengine import RenderEngine from pystache.renderengine import RenderEngine
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment