Files
edx-platform/lms/djangoapps/simplewiki/__init__.py
2012-07-23 14:44:40 -04:00

10 lines
253 B
Python

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