Fix ref to dir_ when it should be files in the wheel module for file_roots

This commit is contained in:
Thomas S Hatch 2012-10-29 23:07:09 -06:00
parent d8451b9a37
commit 805763fcf2

View File

@ -54,7 +54,7 @@ def list_env(env='base'):
sub = sub[aroot]
for dir_ in dirs:
sub[dir_] = {}
for fn_ in dirs:
for fn_ in files:
sub[fn_] = 'f'
return ret