-
-
Notifications
You must be signed in to change notification settings - Fork 633
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
[17.0][UPD] copier version 1.20 #1325
Conversation
@pedrobaeza please review |
Please check pre-commit CI |
b0e8915
to
e725b15
Compare
mail_activity_board/__manifest__.py
Outdated
"author": """SDi, David Juaneda, Sodexis, ACSONE SA/NV, | ||
Odoo Community Association (OCA)""", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't make literal multi-line strings, or the spaces and newlines will be part of the author field:
"author": """SDi, David Juaneda, Sodexis, ACSONE SA/NV, | |
Odoo Community Association (OCA)""", | |
"author": "SDi, David Juaneda, Sodexis, ACSONE SA/NV," | |
"Odoo Community Association (OCA)", |
@@ -159,7 +159,8 @@ def test_01_from_outgoing_server_domainone(self): | |||
self.assertEqual( | |||
used_mail_server, | |||
expected_mail_server, | |||
f"It using {used_mail_server.name} but we expect to use {expected_mail_server.name}", | |||
f"""It using {used_mail_server.name} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Incorrect due to the same reason (and all of them).
@pedrobaeza how can i fix it? Should it then be ignored it with "# noqa: E501"? |
I have already told you what is the solution. |
e725b15
to
b99d2f1
Compare
b99d2f1
to
65e6f69
Compare
@pedrobaeza do you agree this is okay now? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/ocabot merge patch
What a great day to merge this nice PR. Let's do it! |
Congratulations, your PR was merged at 449852b. Thanks a lot for contributing to OCA. ❤️ |
No description provided.