__init__.py 253 Bytes
Newer Older
1
# Source: django-simplewiki. GPL license.
2

3 4
import os
import sys
Piotr Mitros committed
5 6 7 8 9

# allow mdx_* parsers to be just dropped in the simplewiki folder
module_path = os.path.abspath(os.path.dirname(__file__))
if module_path not in sys.path:
    sys.path.append(module_path)