Fix typo in os.walk

This commit is contained in:
C. R. Oldham 2014-12-15 15:29:27 -07:00
parent a6b5011cb7
commit 22cd943e5c

View File

@ -143,7 +143,7 @@ def clean_pub_auth(opts):
if not os.path.exists(auth_cache):
return
else:
for (dirpath, dirnames, filenames) in os.walkpath(auth_cache):
for (dirpath, dirnames, filenames) in os.walk(auth_cache):
for auth_file in filenames:
auth_file_path = os.path.join(dirpath, auth_file)
if not os.path.isfile(auth_file_path):