PATH:
opt
/
imunify360
/
venv
/
lib
/
python3.11
/
site-packages
/
clcommon
# -*- coding: utf-8 -*- # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2018 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT # from .clfunc import escape_formatting_chars class FormattedException(Exception): def __init__(self, exc_message): if isinstance(exc_message, dict): self.message = escape_formatting_chars(exc_message["message"]) self.context = exc_message.get("context", {}) self.details = exc_message.get("details") message = self.message % self.context elif isinstance(exc_message, FormattedException): self.message = escape_formatting_chars(exc_message.message) self.context = exc_message.context self.details = exc_message.details message = self.message % self.context else: self.message = escape_formatting_chars(exc_message) self.context = {} self.details = None message = exc_message Exception.__init__(self, message) def __str__(self): return self.message % self.context
[+]
lib
[-] clcagefs.py
[edit]
[+]
..
[-] clconfpars.py
[edit]
[-] cldebug.py
[edit]
[-] clexception.py
[edit]
[-] ui_config.py
[edit]
[-] clsec.py
[edit]
[-] const.py
[edit]
[-] utils_cmd.py
[edit]
[-] lock.py
[edit]
[-] clhook.py
[edit]
[-] clcustomscript.py
[edit]
[+]
__pycache__
[-] utils.py
[edit]
[-] clwpos_lib.py
[edit]
[-] clproc.py
[edit]
[-] clquota.py
[edit]
[-] clfunc.py
[edit]
[-] features.py
[edit]
[-] clconfig.py
[edit]
[-] group_info_reader.py
[edit]
[-] __init__.py
[edit]
[+]
public_hooks
[-] php_conf_reader.py
[edit]
[-] clpwd.py
[edit]
[+]
cpapi
[-] mail_helper.py
[edit]
[-] cloutput.py
[edit]
[-] sysctl.py
[edit]
[-] clcaptain.py
[edit]
[-] clemail.py
[edit]
[-] evr_utils.py
[edit]
[-] mysql_lib.py
[edit]
[-] cllog.py
[edit]