Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

global: logging strings are not unicode-friendly #141

Open
slint opened this issue Jul 8, 2022 · 0 comments · Fixed by #143
Open

global: logging strings are not unicode-friendly #141

slint opened this issue Jul 8, 2022 · 0 comments · Fixed by #143

Comments

@slint
Copy link
Member

slint commented Jul 8, 2022

The strings used in logging calls in models.py are not unicode-friendly, so when e.g. we create a PID with pid_value = 'DINÂMIA-12345' this info logging call, raises an exception.

The solution is to convert them to unicode strings, i.e.:

-logger.info("Created PID {0}:{1}".format(pid_type, pid_value))
+logger.info(u"Created PID {0}:{1}".format(pid_type, pid_value))
@ghost ghost self-assigned this Jul 26, 2022
@ghost ghost removed a link to a pull request Jul 26, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant