defunkt / pystache

Mustache in Python
http://mustache.github.com/
MIT License
1.31k stars 308 forks source link

changed imports to relative imports #172

Open mdipierro opened 9 years ago

mdipierro commented 9 years ago

Hello defunkt,

I made changes from import pystache.something to import .something so that pystache can be used even when its module is not in sys.path. I needed this change in order to run on google app engine (where I am not allowed to install modules) and for various reasons I was not allowed to change sys.path.

Massimo