Browse Source
[FIX] auth_session_timeout: Missing import
pull/1538/head
Pedro M. Baeza
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
auth_session_timeout/models/res_users.py
|
@ -9,7 +9,7 @@ from os.path import getmtime |
|
|
from time import time |
|
|
from time import time |
|
|
from os import utime |
|
|
from os import utime |
|
|
|
|
|
|
|
|
from odoo import api, http, models |
|
|
|
|
|
|
|
|
from odoo import api, http, models, tools |
|
|
|
|
|
|
|
|
_logger = logging.getLogger(__name__) |
|
|
_logger = logging.getLogger(__name__) |
|
|
|
|
|
|
|
|