#!/usr/bin/env python
import sys
import os


if __name__ == "__main__":
    root = os.path.dirname(os.path.dirname(sys.argv[0]))

    # For some reason, Python2 seems to not find this after splitting the doge
    # module into core/wow.
    if root not in sys.path:
        sys.path.insert(0, root)

    from doge import core
    core.main()
