Files
edx-platform/simplewiki/__init__.py
Piotr Mitros 646fc0b18f simplewiki
2011-12-30 00:09:16 -05:00

7 lines
204 B
Python

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)