mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
This commit should be added to the `.git-blame-ignore-revs` file before merging, so that blame will be correct (but don't add it til then in case its SHA changes)
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()
|