forked from github/pelican
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.
9 lines
126 B
Python
9 lines
126 B
Python
"""
|
|
python -m pelican module entry point to run via python -m
|
|
"""
|
|
|
|
from . import main
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|