[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[PATCH] Fix typo in process-new which makes dak crash



>From 61ec9a0f42db95eb9a70bde04762e96d959fe0fa Mon Sep 17 00:00:00 2001
From: Matthias Klumpp <mak@debian.org>
Date: Sun, 28 Apr 2013 23:34:44 +0200

---
 dak/process_new.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dak/process_new.py b/dak/process_new.py
index 9210443..f45464b 100755
--- a/dak/process_new.py
+++ b/dak/process_new.py
@@ -134,7 +134,7 @@ def takenover_binaries(upload, missing, session):
         rows = session.query(DBSource.source, DBBinary.package).distinct(). \
                              filter(DBBinary.package.in_(binaries)). \
                              join(DBBinary.source). \
-                             filter(DBSource.source != upload.source.source). \
+                             filter(DBSource.source != upload.source). \
                              join(DBBinary.suites). \
                              filter(Suite.suite_name.in_(suites)). \
                              order_by(DBSource.source, DBBinary.package).all()
-- 
1.7.1


Reply to: