diff --git a/src/sh_edraft/__init__.py b/src/sh_edraft/__init__.py index d64c519d..58fb4bac 100644 --- a/src/sh_edraft/__init__.py +++ b/src/sh_edraft/__init__.py @@ -1,10 +1,10 @@ # -*- coding: utf-8 -*- """ -sh_edraft +sh_edraft common python library ~~~~~~~~~~~~~~~~~~~ - +Library to share common classes and models used at sh-edraft.de :copyright: (c) 2020 sh-edraft.de :license: MIT, see LICENSE for more details. diff --git a/src/sh_edraft/publish/publisher.py b/src/sh_edraft/publish/publisher.py index f7e5dc7c..fb82617a 100644 --- a/src/sh_edraft/publish/publisher.py +++ b/src/sh_edraft/publish/publisher.py @@ -107,11 +107,11 @@ class Publisher(PublisherBase): if name.__contains__('.'): if template.name != name.split('.')[len(name.split('.')) - 1]: - break + continue else: if template.name != name: - break + continue try: module_file_lines: list[str] = []