equal
deleted
inserted
replaced
9 """ |
9 """ |
10 |
10 |
11 import os |
11 import os |
12 |
12 |
13 from VirtualMailManager.errors import VMMError |
13 from VirtualMailManager.errors import VMMError |
14 from VirtualMailManager.handler import Handler, TYPE_ACCOUNT |
14 from VirtualMailManager.handler import Handler |
15 from VirtualMailManager.cli import read_pass |
15 from VirtualMailManager.cli import read_pass |
16 from VirtualMailManager.cli.config import CliConfig as Cfg |
16 from VirtualMailManager.cli.config import CliConfig as Cfg |
17 from VirtualMailManager.constants import ACCOUNT_EXISTS, INVALID_SECTION, \ |
17 from VirtualMailManager.constants import ACCOUNT_EXISTS, INVALID_SECTION, \ |
18 NO_SUCH_ACCOUNT |
18 NO_SUCH_ACCOUNT, TYPE_ACCOUNT |
19 from VirtualMailManager.password import randompw |
19 from VirtualMailManager.password import randompw |
20 |
20 |
21 _ = lambda msg: msg |
21 _ = lambda msg: msg |
22 |
22 |
23 |
23 |