Create people.xml if it doesn't exist.
(self, path)
| 952 | ) |
| 953 | |
| 954 | def _update_people_xml(self, path): |
| 955 | """Create people.xml if it doesn't exist.""" |
| 956 | if not path.exists(): |
| 957 | # Copy from template |
| 958 | shutil.copy(TEMPLATE_DIR / "people.xml", path) |
| 959 | |
| 960 | def _add_content_type_for_people(self, path): |
| 961 | """Add people.xml content type to [Content_Types].xml if not already present.""" |