Files
edx-platform/simplewiki/__init__.py
2012-01-04 19:00:52 -05:00

9 lines
248 B
Python

# Source: django-simplewiki. GPL license.
import sys, os
# 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)