Mercurial > libervia-backend
comparison sat_frontends/quick_frontend/quick_blog.py @ 4071:4b842c1fb686
refactoring: renamed `sat` package to `libervia.backend`
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 02 Jun 2023 11:49:51 +0200 |
parents | 524856bd7b19 |
children |
comparison
equal
deleted
inserted
replaced
4070:d10748475025 | 4071:4b842c1fb686 |
---|---|
16 | 16 |
17 # You should have received a copy of the GNU Affero General Public License | 17 # You should have received a copy of the GNU Affero General Public License |
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. | 18 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
19 | 19 |
20 # from sat.core.i18n import _, D_ | 20 # from sat.core.i18n import _, D_ |
21 from sat.core.log import getLogger | 21 from libervia.backend.core.log import getLogger |
22 | 22 |
23 log = getLogger(__name__) | 23 log = getLogger(__name__) |
24 | 24 |
25 | 25 |
26 from sat_frontends.quick_frontend.constants import Const as C | 26 from sat_frontends.quick_frontend.constants import Const as C |
27 from sat_frontends.quick_frontend import quick_widgets | 27 from sat_frontends.quick_frontend import quick_widgets |
28 from sat_frontends.tools import jid | 28 from sat_frontends.tools import jid |
29 from sat.tools.common import data_format | 29 from libervia.backend.tools.common import data_format |
30 | 30 |
31 try: | 31 try: |
32 # FIXME: to be removed when an acceptable solution is here | 32 # FIXME: to be removed when an acceptable solution is here |
33 str("") # XXX: unicode doesn't exist in pyjamas | 33 str("") # XXX: unicode doesn't exist in pyjamas |
34 except ( | 34 except ( |