From: Mike O'Connor Date: Fri, 13 Nov 2009 18:59:52 +0000 (+0000) Subject: missing comma X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53fe0976398a2fc9f40b1e5f854b21bb239e75a4;p=dak missing comma Signed-off-by: Mike O'Connor --- diff --git a/daklib/dbconn.py b/daklib/dbconn.py index 2a961834..034728d0 100644 --- a/daklib/dbconn.py +++ b/daklib/dbconn.py @@ -2852,7 +2852,7 @@ class DBConn(object): maintainer = self.tbl_changes.c.maintainer, changedby = self.tbl_changes.c.changedby, date = self.tbl_changes.c.date, - version = self.tbl_changes.c.version + version = self.tbl_changes.c.version, files = relation(ChangePendingFile, secondary=self.tbl_changes_pending_files_map, backref="changesfile"),