X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Flists.py;h=320184e3934d19f6253bc713fe06da0e8f84cda0;hb=503083ad4b4f2e00c048fcf63166667c8d1afec7;hp=e7f8bf968c442f3f094285d00a23566d310bb031;hpb=bd6d098b3aeea59276364c2f7da865a56a24c4f1;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)