Commit 06c9677bc60d36e8ed1382bba50a5bf4dff108fa
1 parent
9d2af863
Exists in
master
and in
1 other branch
fix log message "Loading questions from..."
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
perguntations/factory.py
... | ... | @@ -115,7 +115,7 @@ class QuestionFactory(dict): |
115 | 115 | else: |
116 | 116 | self.add_question(q) |
117 | 117 | |
118 | - logger.info(f'{len(self):>4} from "{pathfile}"') | |
118 | + logger.info(f'{len(questions):>4} from "{pathfile}"') | |
119 | 119 | |
120 | 120 | # ------------------------------------------------------------------------ |
121 | 121 | # load multiple YAML question files | ... | ... |