Commit bd2c007c by Gabriel Falcão

Merge pull request #456 from dnozay/rtd

docs/conf.py pythonpath fix
parents a2d8cc90 22459a0c
......@@ -15,6 +15,15 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import os
import sys
here = os.path.dirname(__file__)
parent = os.path.dirname(here)
sys.path.append(parent)
sys.path.append(os.path.join(here, '_ext'))
from lettuce import version, release
copyright = u'Gabriel Falcão <gabriel@nacaolivre.org>'
......
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