remove Tr from created aliases

changed alias creation / envlist mechanism
This commit is contained in:
2022-08-23 16:49:39 +02:00
parent 9cf46d06a6
commit a3e5dd6af6
3 changed files with 42 additions and 64 deletions

View File

@@ -109,7 +109,7 @@ def frappy_start(**services):
all_cfg[service] = cfginfo
if secnode:
secnode('')
# check cfg is not used twice
for cfg in cfginfo.split(','):
cfg = cfg.strip()
@@ -230,7 +230,7 @@ def frappy_list(service=None):
printTable(['command'], [['frappy_list(%r)' % s] for s in SERVICES], session.log.info)
session.log.info(' ')
for cfgdir in bases:
table.append('--- %s' % cfgdir)
table.append(['---\n', cfgdir])
for cfgfile in glob(join(cfgdir, '*.cfg')):
parser = ConfigParser()
parser.read(cfgfile)