Skip to content
This repository has been archived by the owner on May 15, 2024. It is now read-only.

Commit

Permalink
Fix package generation
Browse files Browse the repository at this point in the history
  • Loading branch information
ericof committed Nov 9, 2023
1 parent bd288af commit 34d5d17
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
"""Init and utils."""
import logging

from zope.i18nmessageid import MessageFactory

_ = MessageFactory("{{ cookiecutter.python_package_name }}")

logger = logging.getLogger("{{ cookiecutter.python_package_name }}")
PACKAGE_NAME = "{{ cookiecutter.python_package_name }}"

_ = MessageFactory(PACKAGE_NAME)

logger = logging.getLogger(PACKAGE_NAME)

0 comments on commit 34d5d17

Please sign in to comment.