diff --git a/create_db.py b/create_db.py index 59235e1..d2044a3 100644 --- a/create_db.py +++ b/create_db.py @@ -126,9 +126,9 @@ def __init__(self, message): crawler.close() if not relations_count_new > relations_count: error_message = ( - f"Unexpected relation count change in the crawler '{name}': " - f"Expected new relations ({relations_count_new}) " - f"to be greater than the previous relations ({relations_count})." + f'Unexpected relation count change in the crawler "{name}": ' + f'Expected new relations ({relations_count_new}) ' + f'to be greater than the previous relations ({relations_count}).' ) raise RelationCountError(error_message) status[module_name] = 'OK'