Browse Source

[LINT] no need utf-8 in py3

pull/151/head
Ivan Yelizariev 6 years ago
parent
commit
509a41073b
  1. 1
      mail_all/__init__.py
  2. 1
      mail_all/__openerp__.py
  3. 1
      mail_all/tests/__init__.py
  4. 1
      mail_all/tests/test_js.py
  5. 1
      mail_archives/__init__.py
  6. 1
      mail_archives/__openerp__.py
  7. 1
      mail_archives/tests/__init__.py
  8. 1
      mail_archives/tests/test_js.py
  9. 1
      mail_base/__init__.py
  10. 1
      mail_base/__openerp__.py
  11. 1
      mail_base/controllers/main.py
  12. 1
      mail_base/models.py
  13. 1
      mail_base/tests/__init__.py
  14. 1
      mail_base/tests/test_default.py
  15. 1
      mail_check_immediately/__init__.py
  16. 1
      mail_check_immediately/__openerp__.py
  17. 1
      mail_check_immediately/models.py
  18. 1
      mail_fix_553/__init__.py
  19. 1
      mail_fix_553/__openerp__.py
  20. 1
      mail_fix_553/mail_fix_553.py
  21. 1
      mail_move_message/__init__.py
  22. 1
      mail_move_message/__openerp__.py
  23. 1
      mail_move_message/controllers/__init__.py
  24. 1
      mail_move_message/controllers/main.py
  25. 1
      mail_move_message/mail_move_message_models.py
  26. 1
      mail_private/__init__.py
  27. 1
      mail_private/__openerp__.py
  28. 1
      mail_private/models.py
  29. 1
      mail_recovery/__init__.py
  30. 1
      mail_recovery/__openerp__.py
  31. 1
      mail_reply/__init__.py
  32. 1
      mail_reply/__openerp__.py
  33. 1
      mail_reply/tests/__init__.py
  34. 1
      mail_reply/tests/test_default.py
  35. 1
      mail_sent/__init__.py
  36. 1
      mail_sent/__openerp__.py
  37. 1
      mail_sent/models.py
  38. 1
      mail_sent/tests/__init__.py
  39. 1
      mail_sent/tests/test_js.py
  40. 1
      mail_to/__init__.py
  41. 1
      mail_to/__openerp__.py
  42. 1
      mailgun/__init__.py
  43. 1
      mailgun/__openerp__.py
  44. 1
      mailgun/controllers/__init__.py
  45. 1
      mailgun/controllers/main.py
  46. 1
      mailgun/models.py
  47. 1
      res_partner_company_messages/__init__.py
  48. 1
      res_partner_company_messages/__openerp__.py
  49. 1
      res_partner_company_messages/models.py
  50. 1
      res_partner_mails_count/__init__.py
  51. 1
      res_partner_mails_count/__openerp__.py
  52. 1
      res_partner_mails_count/models.py
  53. 1
      res_partner_mails_count/tests/__init__.py
  54. 1
      res_partner_mails_count/tests/test_mail.py
  55. 1
      res_partner_mails_count/tests/test_phantom.py

1
mail_all/__init__.py

@ -1 +0,0 @@
# -*- coding: utf-8 -*-

1
mail_all/__openerp__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
{
"name": "Show all messages",
"summary": """Checkout all messages where you have access""",

1
mail_all/tests/__init__.py

@ -1,3 +1,2 @@
# -*- coding: utf-8 -*-
from . import test_js

1
mail_all/tests/test_js.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import odoo.tests

1
mail_archives/__init__.py

@ -1 +0,0 @@
# -*- coding: utf-8 -*-

1
mail_archives/__openerp__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
{
"name": "Mail archives",
"summary": """Adds menu to find old messages""",

1
mail_archives/tests/__init__.py

@ -1,3 +1,2 @@
# -*- coding: utf-8 -*-
from . import test_js

1
mail_archives/tests/test_js.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import odoo.tests

1
mail_base/__init__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from . import models
from . import controllers

1
mail_base/__openerp__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
{
"name": "Mail Base",
"summary": """Makes Mail extendable""",

1
mail_base/controllers/main.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from openerp.http import request
from openerp.addons.bus.controllers.main import BusController

1
mail_base/models.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from openerp import api, models

1
mail_base/tests/__init__.py

@ -1,3 +1,2 @@
# -*- coding: utf-8 -*-
from . import test_default

1
mail_base/tests/test_default.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import odoo.tests

1
mail_check_immediately/__init__.py

@ -1,2 +1 @@
# -*- coding: utf-8 -*-
from . import models

1
mail_check_immediately/__openerp__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
{
'name': 'Check mail immediately',
'version': '1.0.1',

1
mail_check_immediately/models.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import datetime
from openerp.tools.translate import _

1
mail_fix_553/__init__.py

@ -1,2 +1 @@
# -*- coding: utf-8 -*-
from . import mail_fix_553

1
mail_fix_553/__openerp__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
{
"name": "Fix mail error 553",
"version": "0.3",

1
mail_fix_553/mail_fix_553.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import base64
import logging

1
mail_move_message/__init__.py

@ -1,3 +1,2 @@
# -*- coding: utf-8 -*-
from . import controllers
from . import mail_move_message_models

1
mail_move_message/__openerp__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
{
'name': 'Mail relocation',
'version': '1.0.5',

1
mail_move_message/controllers/__init__.py

@ -1,2 +1 @@
# -*- coding: utf-8 -*-
from . import main

1
mail_move_message/controllers/main.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from odoo.addons.web.controllers.main import DataSet
from odoo.tools.translate import _
from odoo import http

1
mail_move_message/mail_move_message_models.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from openerp import api
from openerp import fields
from openerp import models

1
mail_private/__init__.py

@ -1,3 +1,2 @@
# -*- coding: utf-8 -*-
from . import models

1
mail_private/__openerp__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
{
"name": """Internal Messaging""",
"summary": """Send private messages to specified recipients, regardless of who are in followers list.""",

1
mail_private/models.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from odoo import models, fields, api

1
mail_recovery/__init__.py

@ -1 +0,0 @@
# -*- coding: utf-8 -*-

1
mail_recovery/__openerp__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
{
'name': "Mail Recovery",
'summary': """Backup and recover unsent message""",

1
mail_reply/__init__.py

@ -1 +0,0 @@
# -*- coding: utf-8 -*-

1
mail_reply/__openerp__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
{
"name": """Always show reply button""",
"summary": """Got a message out of a Record? Now you can reply to it too!""",

1
mail_reply/tests/__init__.py

@ -1,3 +1,2 @@
# -*- coding: utf-8 -*-
from . import test_default

1
mail_reply/tests/test_default.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import odoo.tests

1
mail_sent/__init__.py

@ -1,2 +1 @@
# -*- coding: utf-8 -*-
from . import models

1
mail_sent/__openerp__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
{
"name": "Sentbox",
"summary": """Quick way to find sent messages""",

1
mail_sent/models.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from odoo import api, models, fields

1
mail_sent/tests/__init__.py

@ -1,3 +1,2 @@
# -*- coding: utf-8 -*-
from . import test_js

1
mail_sent/tests/test_js.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import odoo.tests

1
mail_to/__init__.py

@ -1 +0,0 @@
# -*- coding: utf-8 -*-

1
mail_to/__openerp__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
{
"name": """Show message recipients""",
"summary": """Allows you be sure, that all discussion participants were notified""",

1
mailgun/__init__.py

@ -1,3 +1,2 @@
# -*- coding: utf-8 -*-
from . import controllers
from . import models

1
mailgun/__openerp__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
{
'name': "Mailgun",
'author': "IT-Projects LLC, Ildar Nasyrov",

1
mailgun/controllers/__init__.py

@ -1,2 +1 @@
# -*- coding: utf-8 -*-
from . import main

1
mailgun/controllers/main.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from odoo import http
from odoo.http import request
import re

1
mailgun/models.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import requests
import simplejson

1
res_partner_company_messages/__init__.py

@ -1,2 +1 @@
# -*- coding: utf-8 -*-
from . import models

1
res_partner_company_messages/__openerp__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
{
'name': "Aggregate messages from company's contacts",
'version': '1.0.0',

1
res_partner_company_messages/models.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from openerp import api
from openerp import models

1
res_partner_mails_count/__init__.py

@ -1,2 +1 @@
# -*- coding: utf-8 -*-
from . import models

1
res_partner_mails_count/__openerp__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
{
"name": """Partner mails count""",
"summary": """Displays amount of incoming and outgoing partner mails.""",

1
res_partner_mails_count/models.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from openerp import models, fields, api

1
res_partner_mails_count/tests/__init__.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from . import test_mail
# from . import test_phantom

1
res_partner_mails_count/tests/test_mail.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from openerp.tests.common import TransactionCase

1
res_partner_mails_count/tests/test_phantom.py

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import odoo.tests

Loading…
Cancel
Save