Remove shebang lines from generated pelicanconf.py and publishconf.py.

These configuration files do not need a #! line as they are not intended to be
executed directly and are not marked as executable. (In practise this doesn't
cause any problems - it just came up in a Guix bug report because Guix
transforms the #! lines.)

The "coding: utf-8" lines are also no longer required now that Pelican is Python
3 only.
This commit is contained in:
Ben Sturmfels 2021-10-05 10:00:48 +11:00
commit c5c7483268
No known key found for this signature in database
GPG key ID: 023C05E2C9C068F0
2 changed files with 0 additions and 6 deletions

View file

@ -1,6 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
AUTHOR = {{author}}
SITENAME = {{sitename}}
SITEURL = ''

View file

@ -1,6 +1,3 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
# This file is only used if you use `make publish` or
# explicitly specify it as your config file.