diff -r 6eec3213bec9 -r e2db422752b4 cubicweb/cwctl.py --- a/cubicweb/cwctl.py Thu Mar 28 10:11:36 2019 +0100 +++ b/cubicweb/cwctl.py Thu Mar 28 10:33:54 2019 +0100 @@ -25,7 +25,7 @@ # completion). So import locally in command helpers. import sys from warnings import filterwarnings -from os import listdir, system, pathsep +from os import listdir, system from os.path import exists, join, isdir try: @@ -230,15 +230,14 @@ if mode in ('all', 'cubes'): cfgpb = ConfigurationProblem(cwcfg) try: - cubesdir = pathsep.join(cwcfg.cubes_search_path()) cube_names = available_cube_names(cwcfg) namesize = max(len(x) for x in cube_names) except ConfigurationError as ex: print('No cubes available:', ex) except ValueError: - print('No cubes available in %s' % cubesdir) + print('No cubes available') else: - print('Available cubes (%s):' % cubesdir) + print('Available cubes:') for cube in cube_names: try: tinfo = cwcfg.cube_pkginfo(cube)