blob: f292b791724fc56e32fd1f633b31760c99c29874 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# -*- coding: utf-8 -*-
# Path hack as shown by Kenneth Reitz at http://kennethreitz.com/repository-structure-and-python.html
import os
import sys
sys.path.insert(0, os.path.abspath('..'))
import nikola
|