vars: fix typo s/path/spath
This commit is contained in:
parent
3aa41eda0b
commit
46c6eb37d0
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ class VarsModule(BaseVarsPlugin):
|
|||
for spath in os.listdir(path):
|
||||
if not spath.startswith('.'): # skip hidden
|
||||
|
||||
ext = os.path.splitext(path)[-1]
|
||||
ext = os.path.splitext(spath)[-1]
|
||||
full_spath = os.path.join(path, spath)
|
||||
|
||||
if os.path.isdir(full_spath) and not ext: # recursive search if dir
|
||||
|
|
Loading…
Reference in a new issue