blob: 28eb872619004b10a308e4c39ef4c76d602655f3 (
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 # NOQA
|