1. 14 Jan, 2025 37 commits
  2. 10 Jan, 2025 1 commit
  3. 09 Jan, 2025 2 commits
    • Titouan Soulard's avatar
      *: fix coding style tests · 7b94d8c5
      Titouan Soulard authored
      The tests were broken after merge request nexedi/erp5!2035
      7b94d8c5
    • Jérome Perrin's avatar
      base: make Entity_sendEmail raise early for missing email addresses · 25261b03
      Jérome Perrin authored
      on python2, this sends an email with address like "Name <None>", on
      python3 this fails with an error like this:
      
        Module script, line 15, in Entity_sendEmail
         - <PythonScript at /portal_2664097758140587659/Entity_sendEmail used for /portal_2664097758140587659/person_module/20241227-13AB7>
         - Line 15
          from_url = formataddr((sender.hasTitle() and sender.getTitle(), sender.getDefaultEmailText()))
        Module email.utils, line 92, in formataddr
          address.encode('ascii')
      
      better to fail early in such a case
      25261b03