]> git.decadent.org.uk Git - dak.git/blobdiff - daklib/lists.py
Python modules should not be executable
[dak.git] / daklib / lists.py
old mode 100755 (executable)
new mode 100644 (file)
index e7f8bf9..320184e
@@ -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)