diff options
author | mkaay <mkaay@mkaay.de> | 2009-11-30 21:25:33 +0100 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2009-11-30 21:25:33 +0100 |
commit | 7caec14b0a307df9f2bd9ea6a9db6977a836145b (patch) | |
tree | ef4d072f840bd1be0d7351d02dacde15c68e8d12 /module | |
parent | WIP: package system for cli (diff) | |
download | pyload-7caec14b0a307df9f2bd9ea6a9db6977a836145b.tar.xz |
WIP: package system second draft - unstable
Diffstat (limited to 'module')
-rw-r--r-- | module/file_list.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/file_list.py b/module/file_list.py index 1b9526eb8..585c58ddf 100644 --- a/module/file_list.py +++ b/module/file_list.py @@ -333,7 +333,7 @@ class File_List(object): def getPackageFiles(packager, id): key, n, pypack = packager._getPackageFromID(id) ids = [] - for pyfile in pypack: + for pyfile in pypack.files: ids.append(pyfile.id) return ids |