vars: fixed missing path in splitext()

pull/25799/head
Rene Moser 7 years ago committed by Brian Coca
parent a38e727380
commit 43468b825d

@ -123,7 +123,7 @@ class VarsModule(BaseVarsPlugin):
for spath in os.listdir(path):
if not spath.startswith('.'): # skip hidden
ext = os.path.splitext()[-1]
ext = os.path.splitext(path)[-1]
full_spath = os.path.join(path, spath)
if os.path.isdir(full_spath) and not ext: # recursive search if dir

Loading…
Cancel
Save