1
0
Fork 0
forked from github/pelican
pelican-theme/pelican/__main__.py
Kevin Yap 1e0e541b57 Initial pass of removing Python 2 support
This commit removes Six as a dependency for Pelican, replacing the
relevant aliases with the proper Python 3 imports. It also removes
references to Python 2 logic that did not require Six.
2019-11-26 06:16:41 +09:00

9 lines
126 B
Python

"""
python -m pelican module entry point to run via python -m
"""
from . import main
if __name__ == '__main__':
main()