bad call fix

This commit is contained in:
jr-k 2024-05-18 22:58:34 +02:00
parent 0d02d93ebe
commit a850046388

View File

@ -58,7 +58,7 @@ class SysinfoController(ObController):
if self._model_store.config().map().get('debug'):
python = sys.executable
os.execl(python, python, *sys.argv)
elif am_i_in_docker:
elif am_i_in_docker():
python = sys.executable
os.execl(python, python, *sys.argv)
else: