X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Flists.py;h=320184e3934d19f6253bc713fe06da0e8f84cda0;hb=d8056122484c9767c601f66587e6c6d955bd6420;hp=e7f8bf968c442f3f094285d00a23566d310bb031;hpb=5f6b728e74c2eee87418250c3118c20b3b40a590;p=dak.git diff --git a/daklib/lists.py b/daklib/lists.py index e7f8bf96..320184e3 100755 --- a/daklib/lists.py +++ b/daklib/lists.py @@ -64,7 +64,8 @@ def getArchAll(suite, component, architecture, type, session, timestamp = None): full pathname to the u(deb) file. See function writeAllList() in dak/generate_filelist.py for an example that uses this function. ''' - query = suite.binaries.filter_by(architecture = architecture, binarytype = type) + query = suite.clone(session).binaries. \ + filter_by(architecture = architecture, binarytype = type) if timestamp is not None: extra_cond = 'extract(epoch from bin_associations.created) > %d' % timestamp query = query.filter(extra_cond)