crieur 1.3.0__tar.gz → 1.3.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of crieur might be problematic. Click here for more details.
- {crieur-1.3.0 → crieur-1.3.1}/PKG-INFO +1 -1
- {crieur-1.3.0 → crieur-1.3.1}/crieur/__init__.py +1 -1
- {crieur-1.3.0 → crieur-1.3.1}/crieur/models.py +2 -0
- {crieur-1.3.0 → crieur-1.3.1}/.gitignore +0 -0
- {crieur-1.3.0 → crieur-1.3.1}/LICENSE +0 -0
- {crieur-1.3.0 → crieur-1.3.1}/README.md +0 -0
- {crieur-1.3.0 → crieur-1.3.1}/crieur/__main__.py +0 -0
- {crieur-1.3.0 → crieur-1.3.1}/crieur/cli.py +0 -0
- {crieur-1.3.0 → crieur-1.3.1}/crieur/generator.py +0 -0
- {crieur-1.3.0 → crieur-1.3.1}/crieur/statics/pico.css +0 -0
- {crieur-1.3.0 → crieur-1.3.1}/crieur/templates/article.html +0 -0
- {crieur-1.3.0 → crieur-1.3.1}/crieur/templates/author.html +0 -0
- {crieur-1.3.0 → crieur-1.3.1}/crieur/templates/base.html +0 -0
- {crieur-1.3.0 → crieur-1.3.1}/crieur/templates/homepage.html +0 -0
- {crieur-1.3.0 → crieur-1.3.1}/crieur/templates/keyword.html +0 -0
- {crieur-1.3.0 → crieur-1.3.1}/crieur/templates/numero.html +0 -0
- {crieur-1.3.0 → crieur-1.3.1}/crieur/utils.py +0 -0
- {crieur-1.3.0 → crieur-1.3.1}/pyproject.toml +0 -0
|
@@ -148,6 +148,8 @@ def collect_authors(numeros):
|
|
|
148
148
|
for numero in numeros:
|
|
149
149
|
for article in numero.articles:
|
|
150
150
|
article_authors = []
|
|
151
|
+
if not article.authors:
|
|
152
|
+
continue
|
|
151
153
|
for athr in article.authors:
|
|
152
154
|
author_forname = athr["forname"]
|
|
153
155
|
author_surname = athr["surname"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|