Skip to Content
Menu
This question has been flagged
2 Replies
3020 Views

Hey guys, 

i'm getting started with odoo development 

(i'm running odoo 13 with docker desktop ) 

i'm following the Documentation of building website and i'm installing the Academy module 

yet i'm having this error : 


Erreur:

Odoo Server Error


Traceback (most recent call last):

  File "/usr/lib/python3/dist-packages/odoo/http.py", line 624, in _handle_exception

    return super(JsonRequest, self)._handle_exception(exception)

  File "/usr/lib/python3/dist-packages/odoo/http.py", line 310, in _handle_exception

    raise pycompat.reraise(type(exception), exception, sys.exc_info()[2])

  File "/usr/lib/python3/dist-packages/odoo/tools/pycompat.py", line 14, in reraise

    raise value

  File "/usr/lib/python3/dist-packages/odoo/http.py", line 669, in dispatch

    result = self._call_function(**self.params)

  File "/usr/lib/python3/dist-packages/odoo/http.py", line 350, in _call_function

    return checked_call(self.db, *args, **kwargs)

  File "/usr/lib/python3/dist-packages/odoo/service/model.py", line 94, in wrapper

    return f(dbname, *args, **kwargs)

  File "/usr/lib/python3/dist-packages/odoo/http.py", line 339, in checked_call

    result = self.endpoint(*a, **kw)

  File "/usr/lib/python3/dist-packages/odoo/http.py", line 915, in __call__

    return self.method(*args, **kw)

  File "/usr/lib/python3/dist-packages/odoo/http.py", line 515, in response_wrap

    response = f(*args, **kw)

  File "/usr/lib/python3/dist-packages/odoo/addons/web/controllers/main.py", line 1331, in call_button

    action = self._call_kw(model, method, args, kwargs)

  File "/usr/lib/python3/dist-packages/odoo/addons/web/controllers/main.py", line 1319, in _call_kw

    return call_kw(request.env[model], method, args, kwargs)

  File "/usr/lib/python3/dist-packages/odoo/api.py", line 387, in call_kw

    result = _call_kw_multi(method, model, args, kwargs)

  File "/usr/lib/python3/dist-packages/odoo/api.py", line 374, in _call_kw_multi

    result = method(recs, *args, **kwargs)

  File "<decorator-gen-60>", line 2, in button_immediate_install

  File "/usr/lib/python3/dist-packages/odoo/addons/base/models/ir_module.py", line 72, in check_and_log

    return method(self, *args, **kwargs)

  File "/usr/lib/python3/dist-packages/odoo/addons/base/models/ir_module.py", line 463, in button_immediate_install

    return self._button_immediate_function(type(self).button_install)

  File "/usr/lib/python3/dist-packages/odoo/addons/base/models/ir_module.py", line 573, in _button_immediate_function

    modules.registry.Registry.new(self._cr.dbname, update_module=True)

  File "/usr/lib/python3/dist-packages/odoo/modules/registry.py", line 86, in new

    odoo.modules.load_modules(registry._db, force_demo, status, update_module)

  File "/usr/lib/python3/dist-packages/odoo/modules/loading.py", line 423, in load_modules

    loaded_modules, update_module, models_to_check)

  File "/usr/lib/python3/dist-packages/odoo/modules/loading.py", line 315, in load_marked_modules

    perform_checks=perform_checks, models_to_check=models_to_check

  File "/usr/lib/python3/dist-packages/odoo/modules/loading.py", line 182, in load_module_graph

    load_openerp_module(package.name)

  File "/usr/lib/python3/dist-packages/odoo/modules/module.py", line 376, in load_openerp_module

    __import__('odoo.addons.' + module_name)

  File "/mnt/extra-addons/academy/__init__.py", line 3, in <module>

    from . import controllers

  File "/mnt/extra-addons/academy/controllers/__init__.py", line 3, in <module>

    from . import controllers

  File "/mnt/extra-addons/academy/controllers/controllers.py", line 2

    from odoo import http

    ^

IndentationError: unexpected indent

Avatar
Discard

Please use a meaningful title refering to your error message.

Best Answer

Hi,

As per the error message it seems the issue with indentation in the newly added file. Remove the redundant spaces in the controllers.py .

If you are new in odoo development, have a look at this: Odoo 14 Development Tutorials

Thanks

Avatar
Discard
Author Best Answer

Thank you very much Niyas Raphy, 

My problem was solved  by deleting the spaces in the controllers.py

Avatar
Discard
Related Posts Replies Views Activity
1
May 24
3079
1
Mar 22
2429
2
Dec 16
5907
2
Jul 15
3179
0
Feb 23
2544