Replaced instance of "os.listdir" with "munkicommon.listdir" in appleupdates.processSoftwareUpdateDownload()

git-svn-id: http://munki.googlecode.com/svn/trunk@998 a4e17f2e-e282-11dd-95e1-755cbddbdd66
This commit is contained in:
Greg Neagle
2011-01-14 23:45:57 +00:00
parent d5822402e8
commit c2534d5cc8
+1 -1
View File
@@ -586,7 +586,7 @@ def processSoftwareUpdateDownload(appleupdatedir,
pass
# What files do we have to work with? Do we have an appropriate quantity?
diritems = os.listdir(appleupdatedir)
diritems = munkicommon.listdir(appleupdatedir)
for diritem in diritems:
if diritem.endswith('.dist'):
availabledists.append(diritem)