mirror of
https://github.com/munki/munki.git
synced 2026-05-01 09:49:31 -05:00
Fix undefined 'dirnames' error
This commit is contained in:
@@ -92,7 +92,7 @@ def makecatalogs(repopath):
|
||||
errors = []
|
||||
catalogs = {}
|
||||
catalogs['all'] = []
|
||||
for dirpath, unused_dirnames, filenames in os.walk(pkgsinfopath):
|
||||
for dirpath, dirnames, filenames in os.walk(pkgsinfopath):
|
||||
for dirname in dirnames:
|
||||
# don't recurse into directories that start
|
||||
# with a period.
|
||||
|
||||
Reference in New Issue
Block a user