Mercurial > libervia-backend
comparison sat_frontends/primitivus/xmlui.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 |
---|---|
15 # GNU Affero General Public License for more details. | 15 # GNU Affero General Public License for more details. |
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 _ | 20 from libervia.backend.core.i18n import _ |
21 import urwid | 21 import urwid |
22 import copy | 22 import copy |
23 from sat.core import exceptions | 23 from libervia.backend.core import exceptions |
24 from urwid_satext import sat_widgets | 24 from urwid_satext import sat_widgets |
25 from urwid_satext import files_management | 25 from urwid_satext import files_management |
26 from sat.core.log import getLogger | 26 from libervia.backend.core.log import getLogger |
27 | 27 |
28 log = getLogger(__name__) | 28 log = getLogger(__name__) |
29 from sat_frontends.primitivus.constants import Const as C | 29 from sat_frontends.primitivus.constants import Const as C |
30 from sat_frontends.primitivus.widget import PrimitivusWidget | 30 from sat_frontends.primitivus.widget import PrimitivusWidget |
31 from sat_frontends.tools import xmlui | 31 from sat_frontends.tools import xmlui |