Small cleanups.

This commit is contained in:
Joshua Harlow
2012-12-20 23:40:53 -08:00
parent 8e6615f43b
commit 3e3d882b84

View File

@@ -91,8 +91,7 @@ class Unpacker(object):
for tmemb in tfh.getmembers():
if not tmemb.isfile():
continue
fn = tmemb.name
files.append(fn)
files.append(tmemb.name)
return files
def _pat_checker(self, fn, patterns):