bluemaestro: support new databases as well

This commit is contained in:
Dima Gerasimov 2020-07-26 22:23:51 +01:00 committed by karlicoss
parent 9d45eb0559
commit 92307d5f3d
2 changed files with 37 additions and 11 deletions

View file

@ -158,7 +158,7 @@ def get_files(
if src.parts[0] == '~':
src = src.expanduser()
if src.is_dir():
gp: Iterable[Path] = src.glob(glob)
gp: Iterable[Path] = src.glob(glob) # todo not sure if should be recursive?
paths.extend(gp)
else:
ss = str(src)