This commit is contained in:
Dima Gerasimov 2019-06-29 13:43:09 +01:00
parent e5165246e0
commit b1a816e504

View file

@ -51,7 +51,7 @@ class PorgAll:
res: List[Org] = []
for p in self.paths:
for of in _get_org_files_in(p):
org = Org.from_file(of)
org = Org.from_file(str(of))
res.extend(query(org))
return res