Your ROOT_URL in app.ini is https://scm.trinitydesktop.org/gitea/ but you are visiting https://scm.trinitydesktop.net/gitea/TDE/tde-packaging/blame/commit/d27e5e6838cded96c7f11370af49a74f5bab0aa8/ubuntu/raring/libraries/python-trinity/debian/pytdeconfig.py You should set ROOT_URL correctly, otherwise the web may not work correctly.

12 lines
320 B

# import the sipconfig.py for the normal or the debug build
import sys
if getattr(sys, "pydebug", False):
try:
from pytdeconfig_d import *
except ImportError, msg:
raise ImportError, 'No module named pytdeconfig; package python-trinity-dbg not installed'
else:
from pytdeconfig_nd import *