X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fdbconn.py;h=9b757d13487887382595daa0cb23b55742301411;hb=e3544ea0e2e9078fd849fb6f264c8b36b119a37a;hp=6827891d555445adfc357f1a1addfcd1c1a1f28b;hpb=dd59ae4dadd3432690a8a3f9c3902c5eddd6e1ae;p=dak.git diff --git a/daklib/dbconn.py b/daklib/dbconn.py index 6827891d..9b757d13 100755 --- a/daklib/dbconn.py +++ b/daklib/dbconn.py @@ -515,9 +515,8 @@ class DBBinary(ORMObject): fullpath = self.poolfile.fullpath dpkg = Popen(['dpkg-deb', '--fsys-tarfile', fullpath], stdout = PIPE) tar = TarFile.open(fileobj = dpkg.stdout, mode = 'r|') - anything_yielded = False for member in tar.getmembers(): - if member.isfile(): + if not member.isdir(): name = normpath(member.name) # enforce proper utf-8 encoding try: @@ -525,9 +524,6 @@ class DBBinary(ORMObject): except UnicodeDecodeError: name = name.decode('iso8859-1').encode('utf-8') yield name - anything_yielded = True - if not anything_yielded: - yield ' ' tar.close() dpkg.stdout.close() dpkg.wait()